|
||
class CPtrC8Array : public CArrayFixFlat< TPtrC8 >, public MDesC8Array;
Array of 8 bit non-modifiable pointer descriptors, TPtrC8
, implemented using a flat buffer. "bafl.lib"
MDesC8Array
- Interface class for 8 bit descriptor arrays. It should be inherited by classes w...
CArrayFixFlat< TPtrC8 >
- No description.
CPtrC8Array
- Array of 8 bit non-modifiable pointer descriptors, TPtrC8, implemented using a f...
Defined in CPtrC8Array
:
CPtrC8Array(TInt)
Constructs an array of 8 bit non-modifiable descriptors with the specified granu...CopyL(const MDesC8Array &)
Copies a descriptor array into this array, deleting any pre-existing elements.MdcaCount()const
Returns the number of elements in the array. The function implements the pure vi...MdcaPoint(TInt)const
Indexes into the descriptor array. The function implements the pure virtual func...operator=(const MDesC8Array &)
Copies a descriptor array into this array, deleting any pre-existing elements.~CPtrC8Array()
Frees all resources owned by the object, prior to its destruction. IMPORT_C CPtrC8Array(TInt aGranularity);
Constructs an array of 8 bit non-modifiable descriptors with the specified granularity. The length of all elements in the
array buffer is the length of a TPtrC8
object.
No memory is allocated to the array buffer by this constructor.
|
IMPORT_C ~CPtrC8Array();
Frees all resources owned by the object, prior to its destruction.
IMPORT_C void CopyL(const MDesC8Array &aArray);
Copies a descriptor array into this array, deleting any pre-existing elements.
The function constructs TPtrC8
elements for each descriptor element in the specified descriptor array.
|
inline void operator=(const MDesC8Array &aArray);
Copies a descriptor array into this array, deleting any pre-existing elements.
The function constructs TPtrC8
elements for each descriptor element in the specified descriptor array. This operator behaves in the same ways as CPtrC8Array::CopyL(const MDesC8Array &)
.
|
IMPORT_C virtual TInt MdcaCount() const;
Returns the number of elements in the array. The function implements the pure virtual function MDesC8Array::MdcaCount()const
.
|
IMPORT_C virtual TPtrC8 MdcaPoint(TInt aIndex) const;
Indexes into the descriptor array. The function implements the pure virtual function MDesC8Array::MdcaPoint(TInt)const
.
|
|