Go to the previous, next section.
#include <CNCL/Array.h>
CN_ARRAY
CNObject
CNArrayObject, CNArrayChar, CNArrayDouble, CNArrayFLoat, CNArrayInt, ...
None
CNArray
is the base class of the CNArray
<type>
classes. It defines the common interface.
Constructors:
CNArray();
CNArray(size_t xsize);
CNArray
.
In addition to the member functions required by CNCL, CNArray
provides:
size_t get_size() const;
size_t size() const;
void set_size(size_t sz = 0 );
virtual void size(size_t sz=0) = 0;
size
-function must be implemented
in the derived classes.
Go to the previous, next section.