mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-28 02:11:43 +00:00
[docs] Add missing JavaDocs (#6146)
This commit is contained in:
@@ -32,18 +32,31 @@ class StructDescriptorDatabase;
|
||||
* Known data types for raw struct dynamic fields (see StructFieldDescriptor).
|
||||
*/
|
||||
enum class StructFieldType {
|
||||
/// bool.
|
||||
kBool,
|
||||
/// char.
|
||||
kChar,
|
||||
/// int8.
|
||||
kInt8,
|
||||
/// int16.
|
||||
kInt16,
|
||||
/// int32.
|
||||
kInt32,
|
||||
/// int64.
|
||||
kInt64,
|
||||
/// uint8.
|
||||
kUint8,
|
||||
/// uint16.
|
||||
kUint16,
|
||||
/// uint32.
|
||||
kUint32,
|
||||
/// uint64.
|
||||
kUint64,
|
||||
/// float.
|
||||
kFloat,
|
||||
/// double.
|
||||
kDouble,
|
||||
/// struct.
|
||||
kStruct
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user