Browse
 
Tools
Rss Categories

LVSemanticArray Class

1 LVSemanticArray C++ API Summary

LVSemanticArray represents an array type. You can get an array out of a data type container by calling LVSemanticData::GetSemanticArray(). Functions Return Type Description LVSemanticArray() Constructor LVSemanticArray(const LVSemanticArray& other) Copy…

2 LVSemanticArray::At

Access elements in an LVSemanticArray. Function const LVSemanticData& At(int Index) const Parameters Index The index of the element being accessed. If the index is greater than or equal to the value returned by LVSemanticArray::Size, this function will…

3 LVSemanticArray::LVSemanticArray

LVSemanticArray constructor. Functions LVSemanticArray(void) LVSemanticArray(const LVSemanticArray &other;) Parameters other The semantic array to be copied. Example C++ Code // The first of these constructors creates an empty LVSemanticArray object.…

4 LVSemanticArray::operator =

Assignment operator. Functions LVSemanticArray& operator = (const LVSemanticArray& other) Parameters other The semantic array to be copied. Example LVSemanticArray myData = myArray[6]; See Also LVSemanticArray C++ API Summary

5 LVSemanticArray::operator []

Access elements in an LVSemanticArray the way you would a conventional array. Function const LVSemanticData& operator [] (int Index) const Example LVSemanticData myData = myArray[6]; See Also LVSemanticArray C++ API Summary LVSemanticArray_GetElement…

6 LVSemanticArray::Size

Returns the size of an LVSemanticArray. Function int Size() const Return Values Non-negative value The number of elements in the array. LV_FAILURE Either the handle is not of SI_TYPE_ARRAY type, or some error occurred. See Also LVSemanticArray C++ API Summary…

7 LVSemanticArray::~LVSemanticArray

LVSemanticArray destructor. Functions ~LVSemanticArray() See Also LVSemanticArray C++ API Summary