Location:
e32des8.h
Link against: euser.lib
class TPtr8
Supported from 5.0
This is a descriptor class intended for instantiation and encapsulates a pointer to the 8 bit data that it represents. The data can live in ROM or RAM and this location is separate from the descriptor object itself.
The data is intended to be accessed and modified through this descriptor. The base classes provide the functions through which the data can be manipulated.
|
Defined in TPtr8
:
Set()
, TPtr8()
, operator=()
Inherited from TDes8
:
Append()
,
AppendFill()
,
AppendFormat()
,
AppendFormatList()
,
AppendJustify()
,
AppendNum()
,
AppendNumFixedWidth()
,
AppendNumFixedWidthUC()
,
AppendNumUC()
,
Capitalize()
,
Collate()
,
Copy()
,
CopyC()
,
CopyCP()
,
CopyF()
,
CopyLC()
,
CopyUC()
,
Delete()
,
Fill()
,
FillZ()
,
Fold()
,
Format()
,
FormatList()
,
Insert()
,
Justify()
,
LowerCase()
,
MaxLength()
,
MaxSize()
,
Num()
,
NumFixedWidth()
,
NumFixedWidthUC()
,
NumUC()
,
PtrZ()
,
Repeat()
,
Replace()
,
SetLength()
,
SetMax()
,
Swap()
,
Trim()
,
TrimAll()
,
TrimLeft()
,
TrimRight()
,
UpperCase()
,
Zero()
,
ZeroTerminate()
,
operator+=()
,
operator=
,
operator[]()
Inherited from TDesC8
:
Alloc()
,
AllocL()
,
AllocLC()
,
Compare()
,
CompareC()
,
CompareF()
,
Find()
,
FindC()
,
FindF()
,
Left()
,
Length()
,
Locate()
,
LocateF()
,
LocateReverse()
,
LocateReverseF()
,
Match()
,
MatchC()
,
MatchF()
,
Mid()
,
Ptr()
,
Right()
,
Size()
,
operator!=()
,
operator<()
,
operator<=()
,
operator==()
,
operator>()
,
operator>=()
TPtr8(const TPtr8& aTPtr);
Constructs the 8 bit modifiable pointer descriptor from an existing 8 bit pointer descriptor.
It is set to point to the same data, is given the same length and the same maximum length as the source pointer descriptor.
|
TPtr8(TUint8* aBuf,TInt aMaxLength);
Constructs the 8 bit modifiable pointer descriptor to point to the specified location in memory, whether in RAM or ROM. The length of the descriptor is set to zero and its maximum length is set to the specified value.
|
TPtr8(TUint8* aBuf,TInt aLength,TInt aMaxLength);
Constructs the 8 bit modifiable pointer descriptor to point to the specified location in memory, whether in RAM or ROM. The length of the descriptor and its maximum length are set to the specified values.
|
void Set(TPtr8& aPtr);
Sets the 8 bit modifiable pointer descriptor from an existing 8 bit modifiable pointer descriptor.
It is set to point to the same data, is given the same length and the same maximum length as the source pointer descriptor.
|
void Set(TUint8* aBuf,TInt aLength,TInt aMaxLength);
Sets the 8 bit modifiable pointer descriptor to point to the specified location in memory, whether in RAM or ROM. The length of the descriptor and its maximum length are set to the specified values.
|
TPtr8& operator=(const TDesC8& aDes);
TPtr8& operator=(const TPtr8& aDes);
TPtr8& operator=(const TUint8* aString);
Copies data into this 8 bit modifiable pointer descriptor replacing any existing data. The length of this descriptor is set to reflect the new data.
|
|