#include <xsi_dataarray2D.h>
Public Member Functions |
|
| Accessor () | |
| Accessor (const Accessor &in_accessor) | |
| Accessor & | operator= (const Accessor &in_accessor) |
| ULONG | GetCount () const |
| const T & | operator[] (ULONG in_index) const |
| T & | operator[] (ULONG in_index) |
| Accessor | ( | ) | [inline] |
Constructor.
Constructs an Accessor object from another Accessor object.
| in_accessor | constant Accessor object. |
Assignment operator.
| in_accessor | constant class object. |
| ULONG GetCount | ( | void | ) | const [inline] |
Returns the number of elements in the array.
| const T& operator[] | ( | ULONG | in_index | ) | const [inline] |
Accessor to elements at a given index. This operator is called when reading the data so the return value is read-only.
| in_index | Index in the array. The index must be smaller than the number of elements in the array, otherwise the results are unpredicted. |
| T& operator[] | ( | ULONG | in_index | ) | [inline] |
Accessor to elements at a given index.
| in_index | Index in this zero-based array. The index must be smaller than the number of elements in the array, otherwise the results are unpredicted. |