Class Hierarchy
AcArrayMemCopyReallocator
C++
template <class T> class AcArrayMemCopyReallocator;
File
acarray.h
Description
Template class for dynamic arrays.
If the contained class can be safely copied by the memcpy operator, use the AcArrayMemCopyReallocator template with the array. If the class you intend to contain requires the use of operator=() for the copying during reallocation, use AcArrayObjectCopyReallocator instead.
The default behavior is to use AcArrayMemCopyReallocator.