#include <delimitedquery8.h>
class CDelimitedQuery8 : public CDelimitedDataBase8 |
Public Member Functions | |
---|---|
~CDelimitedQuery8() | |
IMPORT_C void | InsertAndEscapeCurrentL(const TDesC8 &) |
IMPORT_C CDelimitedQuery8 * | NewL(const TDesC8 &) |
IMPORT_C CDelimitedQuery8 * | NewLC(const TDesC8 &) |
IMPORT_C void | PushAndEscapeBackL(const TDesC8 &) |
IMPORT_C void | PushAndEscapeFrontL(const TDesC8 &) |
IMPORT_C void | InsertAndEscapeCurrentL | ( | const TDesC8 & | 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 CDelimitedQuery8 * | NewL | ( | const TDesC8 & | 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 CDelimitedQuery8 * | NewLC | ( | const TDesC8 & | 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 TDesC8 & | 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 TDesC8 & | 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. |