#include <fixedArray.h>
Public Member Functions | |
fixedArray () | |
operator const T * () const | |
operator T * () | |
const T & | operator[] (const unsigned int i) const |
T & | operator[] (const unsigned int i) |
Private Attributes | |
T | content [S] |
Definition at line 4 of file fixedArray.h.
fixedArray< T, S >::fixedArray | ( | ) | [inline] |
Definition at line 6 of file fixedArray.h.
{}
fixedArray< T, S >::operator const T * | ( | ) | const [inline] |
Definition at line 9 of file fixedArray.h.
{ return content; }
fixedArray< T, S >::operator T * | ( | ) | [inline] |
Definition at line 8 of file fixedArray.h.
{ return content; }
T& fixedArray< T, S >::operator[] | ( | const unsigned int | i | ) | [inline] |
Definition at line 10 of file fixedArray.h.
const T& fixedArray< T, S >::operator[] | ( | const unsigned int | i | ) | const [inline] |
Definition at line 11 of file fixedArray.h.
T fixedArray< T, S >::content[S] [private] |
Definition at line 15 of file fixedArray.h.
Referenced by fixedArray< unsigned short, 2097 >::operator const unsigned short *(), fixedArray< unsigned short, 2097 >::operator unsigned short *(), and fixedArray< unsigned short, 2097 >::operator[]().