Location:
sipstrings.h
Link against: sipcodec.lib
class SIPStrings;
This class defines string pool for SIP Codec. The client of SIP Codec must call OpenL()
before invoking any function of SIP Codec classes. The client must close the string pool when finished using SIP Codec classes.
sipcodec.lib
Defined in SIPStrings
:
Close()
, OpenL()
, Pool()
, StringF()
, Table()
static IMPORT_C void OpenL();
Opens SIP Codec string pool. Implemented with a reference count.
static IMPORT_C void Close();
Closes SIP Codec string pool. In other words decrements reference count and if it reaches zero, closes the string pool. The
user must not call Close()
if it has not called OpenL()
.
static IMPORT_C RStringF StringF(TInt aIndex);
Gets a case-insensitive string specified in the original string table.
|
|
static IMPORT_C RStringPool Pool();
Gets the string pool used by SIP Codec.
|
static IMPORT_C const TStringTable &Table();
Gets the string table used by SIP Codec.
|