|
||
class TLitC;
Encapsulates literal text.
This is always constructed using an _LIT macro.
This class is build independent; i.e. for a non-Unicode build, an 8-bit build variant is generated; for a Unicode build, a 16 bit build variant is generated.
The class has no explicit constructors. See the _LIT macro definition.
Defined in TLitC
:
operator &()const
Returns a const TDesC type pointer.operator const TDesC &()const
Invoked by the compiler when a TLitC<TInt> type is passed to a function wh...operator const __TRefDesC()const
Invoked by the compiler when a TLitC<TInt> type is passed to a function wh...operator()()const
Returns a const TDesC type reference.inline const TDesC* operator &() const;
Returns a const TDesC type pointer.
|
inline operator const TDesC &() const;
Invoked by the compiler when a TLitC<TInt> type is passed to a function which is prototyped to take a const TDesC& type.
|
inline const TDesC& operator()() const;
Returns a const TDesC type reference.
|
inline operator const __TRefDesC() const;
Invoked by the compiler when a TLitC<TInt> type is passed to a function which is prototyped to take a const TRefByValue<const TDesC> type.
|