Location:
e32std.h
Link against: euser.lib
TLitC<TInt>
Supported from 5.0
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 non 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 TDesC&
, operator const __TRefDesC()
, operator&()
, operator()
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.
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. __TRefDesC
is a
typedef of a value reference.
const TDesC* operator&() const;
Returns a const
TDesC
type
pointer.
|
const TDesC& operator()();
Returns a const
TDesC
type
reference.
|