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