#include <e32base.h>
class CArrayFixSeg : public CArrayFix |
Public Member Functions | |
---|---|
CArrayFixSeg(TInt) |
Array of fixed length objects contained within a segmented buffer.
The elements of the array are instances of the template class T.
The segmented buffer is an instance of a CBufSeg.
The elements can be T or R type objects and must have an accessible default constructor.
See also: CBufSeg
CArrayFixSeg | ( | TInt | aGranularity | ) | [inline, explicit] |
Constructs a segmented array of fixed length objects with the specified granularity.
The length of all array elements is the length of the class passed as the template parameter. The length must be non-zero.
Note that no memory is allocated to the array buffer by this constructor.
Parameters | |
---|---|
aGranularity | The granularity of the array. |
Panic Codes | |
---|---|
E32USER-CBase | 17, if the length of the class implied by the template parameter is zero. |
E32USER-CBase | 18, if aGranularity is not positive. |