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