Definition at line 80 of file karrayul.h.
#include <karrayul.h>
Public Member Functions |
|
KStaticArray< Type, Count2 > & | operator[] (int pIndex) |
Public Attributes |
|
KStaticArray< Type, Count2 > | mArray [Count1] |
KStaticArray< Type, Count2 >& operator[] | ( | int | pIndex | ) | [inline] |
Definition at line 86 of file karrayul.h.
{ #ifdef KFBX_PRIVATE K_ASSERT_MSG( pIndex >= 0 , "Buffer underflow."); K_ASSERT_MSG( pIndex < Count1,"Buffer overflow."); #endif return mArray[pIndex]; }
KStaticArray<Type,Count2> mArray[Count1] |
Definition at line 83 of file karrayul.h.