#include <delimitedquery16.h>
class CDelimitedQuery16 : public CDelimitedDataBase16 |
Public Member Functions | |
---|---|
~CDelimitedQuery16() | |
IMPORT_C void | InsertAndEscapeCurrentL(const TDesC16 &) |
IMPORT_C CDelimitedQuery16 * | NewL(const TDesC16 &) |
IMPORT_C CDelimitedQuery16 * | NewLC(const TDesC16 &) |
IMPORT_C void | PushAndEscapeBackL(const TDesC16 &) |
IMPORT_C void | PushAndEscapeFrontL(const TDesC16 &) |
IMPORT_C void | InsertAndEscapeCurrentL | ( | const TDesC16 & | aSegment | ) |
Escape encodes segment then inserts the escaped version in a position before the current parsed segment. The new segment should only contain a single query segment, as any query delimiters in the segment will be converted to an escape triple. The parser is left in a state where its current segment is the same one as before the insertion.
Parameters | |
---|---|
aSegment | A descriptor with the unescaped query segment. |
IMPORT_C CDelimitedQuery16 * | NewL | ( | const TDesC16 & | aQuery | ) | [static] |
Static factory constructor. Uses two phase construction and leaves nothing on the CleanupStack.
Parameters | |
---|---|
aQuery | A descriptor with the initial query. |
IMPORT_C CDelimitedQuery16 * | NewLC | ( | const TDesC16 & | aQuery | ) | [static] |
Static factory constructor. Uses two phase construction and leaves a pointer to created object on the CleanupStack.
Parameters | |
---|---|
aQuery | A descriptor with the initial query. |
IMPORT_C void | PushAndEscapeBackL | ( | const TDesC16 & | aSegment | ) |
Escape encodes segment then inserts the escaped version at the back of the query. The new segment should only contain a single query segment, as any query delimiters in the segment will be converted to an escape triple. The parser is left in a state where its current segment is the same one as before the insertion.
A re-parse is required to ensure that the parser is valid.
Parameters | |
---|---|
aSegment | A descriptor with the unescaped query segment. |
IMPORT_C void | PushAndEscapeFrontL | ( | const TDesC16 & | aSegment | ) |
Escape encodes segment then inserts the escaped version at the front of the query. The new segment should only contain a single query segment, as any query delimiters in the segment will be converted to an escape triple. The parser is left in a state where its current segment is the same one as before the insertion.
A re-parse is required to ensure that the parser is valid.
Parameters | |
---|---|
aSegment | A descriptor with the unescaped query segment. |