Definition at line 52 of file karrayul.h.
#include <karrayul.h>
Public Member Functions |
|
int | GetCount () |
Type & | operator[] (int pIndex) |
Access pointer at given index. |
|
Protected Attributes |
|
int | mCount |
Type * | mArrayBuf |
int GetCount | ( | ) | [inline] |
Type& operator[] | ( | int | pIndex | ) | [inline] |
Access pointer at given index.
Definition at line 62 of file karrayul.h.
{ #ifdef KFBX_PRIVATE K_ASSERT_MSG( pIndex >= 0 , "Buffer underflow"); K_ASSERT_MSG( pIndex < mCount,"Buffer overflow."); #endif return mArrayBuf[pIndex]; }
int mCount
[protected] |
Definition at line 55 of file karrayul.h.
Type* mArrayBuf
[protected] |
Definition at line 56 of file karrayul.h.