8 #include "networktables2/type/StringArray.h"
9 #include "networktables2/type/DefaultEntryTypes.h"
12 const TypeId StringArray::STRING_ARRAY_RAW_ID = 0x12;
13 ArrayEntryType StringArray::TYPE(STRING_ARRAY_RAW_ID, DefaultEntryTypes::STRING);
15 StringArray::StringArray() :
ArrayData(TYPE) {
18 std::string StringArray::get(
int index){
19 return *(std::string*)
_get(index).ptr;
22 void StringArray::set(
int index, std::string value){
28 void StringArray::add(std::string value){
EntryValue _get(unsigned int index)
void _set(unsigned int index, EntryValue value)
void _add(EntryValue value)