Location:
DelimitedPath16.h
Link against: inetprotutil.lib
class TDelimitedPathParser16 : public TDelimitedParserBase16;
Dependencies : TDelimitedParserBase16
Comments : Derived class from TDelimitedParserBase providing a class for parsing paths delimited by '/' as defined in RFC2396.
TDelimitedParserBase16
- Comments : Provides non-modifying functionality for parsing data delimited by a single character
TDelimitedPathParser16
- Dependencies :
Defined in TDelimitedPathParser16
:
Parse()
, ParseReverse()
, TDelimitedPathParser16()
Inherited from TDelimitedParserBase16
:
BackDelimiter()
,
Dec()
,
Des()
,
Eos()
,
FrontDelimiter()
,
GetNext()
,
Inc()
,
Peek()
,
Remainder()
,
SetDelimiter()
IMPORT_C void Parse(const TDesC16 &aPath);
The delimiter must have been set.
This parses the descriptor into path segments from left to right.
The current segment is the leftmost segment and the direction of parsing is set from left to right (EDelimitedDataFroward).
|
IMPORT_C void ParseReverse(const TDesC16 &aPath);
The delimiter must have been set.
This parses the descriptor into path segments from right to left.
The current segment is the leftmost segment and the direction of parsing is set from right to left (EDelimitedDataReverse).
|