Now you can download a copy of these docs so you can use them offline! Download now
BooleanArray.h
1 /*
2  * BooleanArray.h
3  *
4  * Created on: Nov 16, 2012
5  * Author: Mitchell Wills
6  */
7 
8 #ifndef BOOLEANARRAY_H_
9 #define BOOLEANARRAY_H_
10 
11 #include "networktables2/type/ArrayData.h"
12 #include "networktables2/type/ArrayEntryType.h"
13 
14 //TODO: BooleanArray appears unused; replace with namespace?
15 class BooleanArray : public ArrayData{
16 
17 public:
18  static const TypeId BOOLEAN_ARRAY_RAW_ID;
19  static ArrayEntryType TYPE;
20 
21 
22  BooleanArray();
23 
24  bool get(int index);
25  void set(int index, bool value);
26  void add(bool value);
27 };
28 
29 
30 
31 #endif /* BOOLEANARRAY_H_ */

Generated on Sat Apr 26 2014 12:26:45 for WPILibC++ by doxygen 1.8.6