ChartDirector Ver 3.0 (C++ Edition)
IntArray
The IntArray class represents arrays of integers. It encapsulates a pointer to a C array and the size of the array in a single object as follows:
class IntArray { public : int len; const int *data; IntArray() : data(0), len(0) {} IntArray(const int *data, int len) : data(data), len(len) {} };
Method
Inherited
Description
IntArray
(Self)
The constructor of the IntArray class.
© 2003 Advanced Software Engineering Limited. All rights reserved.