CArray Template Class

CArray<TYPE, ARG_TYPE> is a template class that can be used to manage a collection of data of any type. To use this template with a C++ class, the class must implement a default constructor and override the assignment operator.

Part Description
TYPE The storage type. This can be an intrinsic C/C++ type, a user-defined structure or class, or pointer to any type.
ARG_TYPE The storage type. This can be an intrinsic C/C++ type, a user-defined structure or class, or pointer to any type.