[docs] Add missing docs to enum fields (NFC) (#6150)

Co-authored-by: Tyler Veness <calcmogul@gmail.com>
This commit is contained in:
m10653
2024-01-05 00:36:26 -05:00
committed by GitHub
parent 4210f5635d
commit 13f4460e00
49 changed files with 665 additions and 26 deletions

View File

@@ -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
};