Location:
DelimitedPath8.h
Link against: inetprotutil.lib
class CDelimitedPath8 : public CDelimitedDataBase8;
Dependencies : CDelimitedStringBase8 Comments : Provides functionality to create a delimited path where components of the path delimited by '/' as defined in RFC2396.
CBase
- Base class for all classes to be instantiated on the heap
CDelimitedDataBase8
- Dependencies :
CDelimitedPath8
- Dependencies : CDelimitedStringBase8 Comments : Provides functionality to create a delimited path where components of the
path delimited by '/' as defined in RFC2396
Defined in CDelimitedPath8
:
InsertAndEscapeCurrentL()
, NewL()
, NewLC()
, PushAndEscapeBackL()
, PushAndEscapeFrontL()
, ~CDelimitedPath8()
Inherited from CBase
:
Delete()
,
Extension_()
,
operator new()
Inherited from CDelimitedDataBase8
:
AddBackDelimiterL()
,
AddFrontDelimiterL()
,
ConstructL()
,
InsertCurrentL()
,
Parse()
,
ParseReverse()
,
Parser()
,
PopBackL()
,
PopFrontL()
,
PushBackL()
,
PushFrontL()
,
RemoveCurrentL()
,
SetDelimiter()
,
TrimBackDelimiterL()
,
TrimFrontDelimiterL()
static IMPORT_C CDelimitedPath8 *NewL(const TDesC8 &aPath);
Static factory constructor. Uses two phase construction and leaves nothing on the CleanupStack
.
Nothing left on the CleanupStack
.
|
|
static IMPORT_C CDelimitedPath8 *NewLC(const TDesC8 &aPath);
Static factory constructor. Uses two phase construction and leaves a pointer to created object on the CleanupStack
.
Pointer to created object left of CleanupStack
.
|
|
IMPORT_C void InsertAndEscapeCurrentL(const TDesC8 &aSegment);
The path must have been initially parsed.
Escape encodes the segment then inserts the escaped version in a position before the current parsed segment. The new segment should only contain a single path segment, as any path 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.
The path will have been extended to include the new segment. The current segment will remain as the one before the insertion.
|
IMPORT_C void PushAndEscapeFrontL(const TDesC8 &aSegment);
The delimiter must have been set.
Escape encodes the segment then inserts the escaped version at the front of the path. The new segment should only contain a single path segment, as any path 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.
The path will have been extended to include the new segment.
|
IMPORT_C void PushAndEscapeBackL(const TDesC8 &aSegment);
The delimiter must have been set.
Escape encodes the segment then inserts the escaped version at the back of the path. The new segment should only contain a single path segment, as any path 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.
The path will have been extended to include the new segment.
|