Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <stringpool.h>

Class RStringTokenBase

class RStringTokenBase;

Description

Base class for the RStringToken and RStringTokenF string representations. A compact (4 byte) representation of a string in the string pool. This class must be turned into a RStringBase (or one of its derived classes) before you can do anything useful with it. It is only intended to be used when storing strings in situations where space matters; normaly use RStringBase.

Members

Defined in RStringTokenBase:

See also:


Construction and destruction


RStringTokenBase()

inline RStringTokenBase();

Description

Default constructor.

[Top]


Member functions


operator=(RStringBase)

inline RStringTokenBase operator=(RStringBase aVal);

Description

Assignment operator, which makes a string token from a string.

Parameters

RStringBase aVal

The value of the string to copy.

Return value

RStringTokenBase

The string token base.


IsNull()const

inline TBool IsNull() const;

Description

Tests if the string is null or not.

Return value

TBool

ETrue if the string is null, otherwise EFalse.

[Top]


Member data


iVal

protected: TUint32 iVal;

Description