This item is not part of the S60 5th Edition SDK
class TCHFValue;
Description
Encapsulates a reference to a value which can be one of many different types.
Members
Defined in TCHFValue
:
See also:
TCHFMessage
A generic message class used in CHF for command, query and request handling
Construction and destruction
inline TCHFValue();
Description
Constructor for an empty value.
inline TCHFValue(TAny *aValue);
Description
Constructor for a TAny* value.
Parameters
TAny *aValue |
Value to encapsulate
|
|
inline TCHFValue(TInt &aValue);
Description
Constructor for a TInt value.
Parameters
TInt &aValue |
Value to encapsulate
|
|
inline TCHFValue(TRect &aValue);
Description
Constructor for a TRect
value.
Parameters
TRect &aValue |
Value to encapsulate
|
|
inline TCHFValue(TPoint &aValue);
Description
Constructor for a TPoint
value.
Parameters
TPoint &aValue |
Value to encapsulate
|
|
inline TCHFValue(TPtrC8 &aValue);
Description
Constructor for a TPtrC8
value.
Parameters
TPtrC8 &aValue |
Value to encapsulate
|
|
inline TCHFValue(TPtrC16 &aValue);
Description
Constructor for a TPtrC16
value.
Parameters
TPtrC16 &aValue |
Value to encapsulate
|
|
TCHFValue(CCHFContentHandler *&)
inline TCHFValue(CCHFContentHandler *&aValue);
Description
Parameters
TCHFValue(RArray< TCHFValue > &)
inline TCHFValue(RArray< TCHFValue > &aValue);
Description
Constructor for an array of TCHFValue objects.
Parameters
inline TCHFValue(CCoeControl &aValue);
Description
Constructor for a Cone Control object.
Parameters
CCoeControl &aValue |
Value to encapsulate
|
|
inline TAny* Any() const;
Description
Returns a TAny* stored value.
The value is returned as a reference and may be changed.
Return value
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|
inline TInt& Int() const;
Description
Returns a TInt stored value.
The value is returned as a reference and may be changed.
Return value
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|
inline TRect& Rect() const;
Description
Returns a TRect
stored value.
The value is returned as a reference and may be changed.
Return value
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|
inline TPoint& Point() const;
Description
Returns a TPoint
stored value.
The value is returned as a reference and may be changed.
Return value
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|
inline TPtrC8& PtrC8() const;
Description
Returns a TPtrC8
stored value.
The value is returned as a reference and may be changed.
Return value
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|
inline TPtrC16& PtrC16() const;
Description
Returns a TPtrC16
stored value.
The value is returned as a reference and may be changed
Return value
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|
inline RArray< TCHFValue >& ValueArray() const;
Description
Returns an array of stored values.
The value is returned as a reference and may be changed
Return value
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|
inline CCoeControl& Control() const;
Description
Returns a CCoeControl stored value.
The value is returned as a reference and may be changed.
Return value
CCoeControl & |
Stored value
|
|
Panic codes
CHFPanic::ECHFValueInvalidType |
if the value stored is not of this type
|
|