8 #include "networktables2/type/BooleanArray.h"
9 #include "networktables2/type/DefaultEntryTypes.h"
12 const TypeId BooleanArray::BOOLEAN_ARRAY_RAW_ID = 0x10;
13 ArrayEntryType BooleanArray::TYPE(BOOLEAN_ARRAY_RAW_ID, DefaultEntryTypes::BOOLEAN);
15 BooleanArray::BooleanArray() :
ArrayData(TYPE) {
18 bool BooleanArray::get(
int index){
22 void BooleanArray::set(
int index,
bool value){
28 void BooleanArray::add(
bool value){
EntryValue _get(unsigned int index)
void _set(unsigned int index, EntryValue value)
void _add(EntryValue value)