CFx SDK Documentation
2020SP3
|
#include <OdArray.h>
Public Types | |
typedef unsigned int | size_type |
Static Public Member Functions | |
static void | copy (T *pDestination, const T *pSource, size_type numObjects) |
static void | move (T *pDestination, const T *pSource, size_type numObjects) |
static void | construct (T *pObject) |
static void | construct (T *pObject, const T &value) |
static void | constructn (T *pDestination, size_type numObjects, const T &value) |
static void | constructn (T *pDestination, size_type numObjects) |
static void | constructn (T *pDestination, const T *pSource, size_type numObjects) |
static void | destroy (T *pObject) |
static void | destroy (T *objects, size_type numObjects) |
static bool | useRealloc () |
This template class implements object allocation functions within Teigha.
<group Other_Classes>
typedef unsigned int OdObjectsAllocator< T >::size_type |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
This function copies the specified number of objects from source to destination.
pDestination | [in] Pointer to the destination. |
pSource | [in] Pointer to the source. |
numObjects | [in] Number of objects. |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
This function copies the specified number of objects from source to destination.
pDestination | [in] Pointer to the destination. |
pSource | [in] Pointer to the source. |
numObjects | [in] Number of objects. |
|
inlinestatic |