Image Component Library (ICL)
|
Fixed C++-array wrapper class for data handling. More...
#include <FixedArray.h>
Public Member Functions | |
T & | operator[] (unsigned int idx) |
index access operator More... | |
const T & | operator[] (unsigned int idx) const |
index access operator (const) More... | |
Public Attributes | |
T | m_data [DIM] |
Fixed C++-array wrapper class for data handling.
This class is specialized for the DIM values 1,2,3 and 4 FixedArray<T,1> contains a union that shares the 1-dim data with a single value x. FixedArray<T,2> has extra values x,y, then x,y,z and finally x,y,z,w (w can also be called h)
|
inline |
index access operator
|
inline |
index access operator (const)
T icl::utils::FixedArray< T, DIM >::m_data[DIM] |