Location:
BADESCA.H
Link against: bafl.lib
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
CArrayFixFlat< TPtrC8 >
- No description.
CPtrC8Array
- Array of 8 bit non-modifiable pointer descriptors,
Defined in CPtrC8Array
:
CPtrC8Array()
, CopyL()
, MdcaCount()
, MdcaPoint()
, operator=()
, ~CPtrC8Array()
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()
.
|
virtual IMPORT_C TInt MdcaCount() const;
Returns the number of elements in the array. The function implements the pure virtual function MDesC8Array::MdcaCount()
.
|
virtual IMPORT_C TPtrC8 MdcaPoint(TInt aIndex) const;
Indexes into the descriptor array. The function implements the pure virtual function MDesC8Array::MdcaPoint()
.
|
|