Location:
e32cmn.h
class TPckgC : public TPtrC8;
Packages a non-modifiable pointer descriptor which represents an object of specific type.
The template parameter defines the type of object.
The object represented by the packaged pointer descriptor is accessible through the package but cannot be changed.
TDesC8
- Abstract base class for 8-bit non-modifiable descriptors
TPtrC8
- 8-bit non-modifiable pointer descriptor
TPckgC
- Packages a non-modifiable pointer descriptor which represents an object of specific type
Defined in TPckgC
:
TPckgC()
, operator()()
Inherited from TDesC8
:
Alloc()
,
AllocL()
,
AllocLC()
,
AtC()
,
Compare()
,
CompareC()
,
CompareF()
,
DoSetLength()
,
Find()
,
FindC()
,
FindF()
,
Left()
,
Length()
,
Locate()
,
LocateF()
,
LocateReverse()
,
LocateReverseF()
,
Match()
,
MatchC()
,
MatchF()
,
Mid()
,
Ptr()
,
Right()
,
Size()
,
Type()
,
operator!=()
,
operator>()
,
operator>=()
,
operator<()
,
operator<=()
,
operator==()
,
operator[]()
Inherited from TPtrC8
:
Set()
,
iPtr
inline TPckgC(const T &aRef);
Constructs a packaged non-modifiable pointer descriptor to represent the specified object whose type is defined by the template parameter.
|
inline const T &operator()() const;
Gets a reference to the object represented by this packaged non-modifiable pointer descriptor.
|