Location:
stringpool.h
class RStringToken : public RStringTokenBase;
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
.
RStringTokenBase
- Base class for the
RStringToken
- A compact (4 byte) representation of a string in the string pool
Defined in RStringToken
:
operator!=()
, operator=()
, operator==()
Inherited from RStringTokenBase
:
IsNull()
,
iVal
inline TBool operator==(RStringToken aVal) const;
Equality operator.
|
|
inline TBool operator!=(RStringToken aVal) const;
Inequality operator.
|
|
inline RStringToken operator=(RString aVal);
Assignment operator, which makes a string token from a string.
|
|