WPILibC++  unspecified
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 
15 enum class NetworkTableType {
16  kUnassigned = NT_UNASSIGNED,
17  kBoolean = NT_BOOLEAN,
18  kDouble = NT_DOUBLE,
19  kString = NT_STRING,
20  kRaw = NT_RAW,
21  kBooleanArray = NT_BOOLEAN_ARRAY,
22  kDoubleArray = NT_DOUBLE_ARRAY,
23  kStringArray = NT_STRING_ARRAY,
24  kRpc = NT_RPC
25 };
26 
27 } // namespace nt
28 
29 #endif // NTCORE_NETWORKTABLES_NETWORKTABLETYPE_H_
Definition: IStorage.h:21