RStringToken Class Reference

#include <stringpool.h>

class RStringToken : public RStringTokenBase

Inherits from

Detailed Description

A compact (4 byte) representation of a string in the string pool.

This class must be turned into a RString before you can do anything useful with it. It is only intended to be used when storing strings in situations where space matters. You should normally use RString.

Member Function Documentation

operator!= ( RStringToken )

TBool operator!=(RStringTokenaVal)const [inline]

Inequality operator.

Parameters
aValThe string to compare.
Return Value
ETrue if the strings are different, else EFalse

operator= ( RString )

RStringToken operator=(RStringaVal)[inline]

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

Parameters
aValThe string to copy.
Return Value
The string token.

operator== ( RStringToken )

TBool operator==(RStringTokenaVal)const [inline]

Equality operator.

Parameters
aValThe string to compare.
Return Value
ETrue if the strings are the same, otherwise EFalse.