mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-01 02:41:48 +00:00
[docs] Add missing docs to enum fields (NFC) (#6150)
Co-authored-by: Tyler Veness <calcmogul@gmail.com>
This commit is contained in:
@@ -13,17 +13,29 @@ namespace nt {
|
||||
* @ingroup ntcore_cpp_api
|
||||
*/
|
||||
enum class NetworkTableType {
|
||||
/// Unassigned data type.
|
||||
kUnassigned = NT_UNASSIGNED,
|
||||
/// Boolean data type.
|
||||
kBoolean = NT_BOOLEAN,
|
||||
/// Double precision floating-point data type.
|
||||
kDouble = NT_DOUBLE,
|
||||
/// String data type.
|
||||
kString = NT_STRING,
|
||||
/// Raw data type.
|
||||
kRaw = NT_RAW,
|
||||
/// Boolean array data type.
|
||||
kBooleanArray = NT_BOOLEAN_ARRAY,
|
||||
/// Double precision floating-point array data type.
|
||||
kDoubleArray = NT_DOUBLE_ARRAY,
|
||||
/// String array data type.
|
||||
kStringArray = NT_STRING_ARRAY,
|
||||
/// Integer data type.
|
||||
kInteger = NT_INTEGER,
|
||||
/// Single precision floating-point data type.
|
||||
kFloat = NT_FLOAT,
|
||||
/// Integer array data type.
|
||||
kIntegerArray = NT_INTEGER_ARRAY,
|
||||
/// Single precision floating-point array data type.
|
||||
kFloatArray = NT_FLOAT_ARRAY
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user