WPILibC++  2018.4.1-20180824234721-1176-gd6d5321
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
EntryListenerFlags.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_ENTRYLISTENERFLAGS_H_
9 #define NTCORE_NETWORKTABLES_ENTRYLISTENERFLAGS_H_
10 
11 #include "ntcore_c.h"
12 
13 namespace nt {
14 
16 namespace EntryListenerFlags {
17 
33 enum {
39  kImmediate = NT_NOTIFY_IMMEDIATE,
40 
49  kLocal = NT_NOTIFY_LOCAL,
50 
55  kNew = NT_NOTIFY_NEW,
56 
61  kDelete = NT_NOTIFY_DELETE,
62 
68  kUpdate = NT_NOTIFY_UPDATE,
69 
75  kFlags = NT_NOTIFY_FLAGS
76 };
77 
78 } // namespace EntryListenerFlags
79 
80 } // namespace nt
81 
82 #endif // NTCORE_NETWORKTABLES_ENTRYLISTENERFLAGS_H_
Changed locally.
Definition: EntryListenerFlags.h:49
Newly created entry.
Definition: EntryListenerFlags.h:55
NetworkTables (ntcore) namespace.
Definition: ITable.h:21
Entry's flags changed.
Definition: EntryListenerFlags.h:75
Entry's value changed.
Definition: EntryListenerFlags.h:68
Entry was deleted.
Definition: EntryListenerFlags.h:61
Initial listener addition.
Definition: EntryListenerFlags.h:39