![]() |
Public API Reference |
#include <garray.h>
Inheritance diagram for csDirtyAccessArray:
Public Methods | |
csDirtyAccessArray (int ilimit=0, int ithreshold=0) | |
Initialize object to hold initially 'ilimit' elements, and increase storage by 'ithreshold' each time the upper bound is exceeded. More... | |
T * | GetArray () |
Get the pointer to the start of the array. More... | |
const T * | GetArray () const |
Get the pointer to the start of the array. More... | |
T * | GetArrayCopy () |
Get a copy of the array. More... |
The only difference with csArray is that this class allows you to get the address of the internal array. This is of course dangerous so use of this class should be restricted.
The main use of this class is when you absolutely need access to the internal array that is in this class. This can be useful if you want to access some external module (like OpenGL).
Definition at line 40 of file garray.h.
|
Initialize object to hold initially 'ilimit' elements, and increase storage by 'ithreshold' each time the upper bound is exceeded.
|
|
Get the pointer to the start of the array.
|
|
Get the pointer to the start of the array.
Definition at line 67 of file garray.h. Referenced by csTriangleMesh::GetTriangles. |
|
Get a copy of the array. The caller is responsible for deleting this with 'delete[]'. Returns 0 if there are no items in the array. |