WPILibC++  2018.4.1-20180924003241-1198-g0c58a0a
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
NetworkTableType.h
1 /*----------------------------------------------------------------------------*/
2 /* Copyright (c) 2017-2018 FIRST. All Rights Reserved. */
3 /* Open Source Software - may be modified and shared by FRC teams. The code */
4 /* must be accompanied by the FIRST BSD license file in the root directory of */
5 /* the project. */
6 /*----------------------------------------------------------------------------*/
7 
8 #ifndef NTCORE_NETWORKTABLES_NETWORKTABLETYPE_H_
9 #define NTCORE_NETWORKTABLES_NETWORKTABLETYPE_H_
10 
11 #include "ntcore_c.h"
12 
13 namespace nt {
14 
19 enum class NetworkTableType {
20  kUnassigned = NT_UNASSIGNED,
21  kBoolean = NT_BOOLEAN,
22  kDouble = NT_DOUBLE,
23  kString = NT_STRING,
24  kRaw = NT_RAW,
25  kBooleanArray = NT_BOOLEAN_ARRAY,
26  kDoubleArray = NT_DOUBLE_ARRAY,
27  kStringArray = NT_STRING_ARRAY,
28  kRpc = NT_RPC
29 };
30 
31 } // namespace nt
32 
33 #endif // NTCORE_NETWORKTABLES_NETWORKTABLETYPE_H_
NetworkTableType
NetworkTable entry type.
Definition: NetworkTableType.h:19
NetworkTables (ntcore) namespace.
Definition: ITable.h:21