sl@0
|
1 |
// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef __DELIMITEDPATHSEGMENT8_H__
|
sl@0
|
17 |
#define __DELIMITEDPATHSEGMENT8_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@file DelimitedPathSegment8.h
|
sl@0
|
21 |
Comments : This file contains the API definition for the classes TDelimitedPathSegmentParser8
|
sl@0
|
22 |
and CDelimitedPathSegment8.
|
sl@0
|
23 |
@publishedAll
|
sl@0
|
24 |
@released
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
|
sl@0
|
27 |
// System includes
|
sl@0
|
28 |
//
|
sl@0
|
29 |
#include <e32base.h>
|
sl@0
|
30 |
#include <delimitedparser8.h>
|
sl@0
|
31 |
|
sl@0
|
32 |
|
sl@0
|
33 |
/**
|
sl@0
|
34 |
Dependencies : TDelimitedParserBase8
|
sl@0
|
35 |
Comments : Derived class from TDelimitedParserBase providing a class for parsing
|
sl@0
|
36 |
path segments delimited by a ';' as defined in RFC2396.
|
sl@0
|
37 |
@publishedAll
|
sl@0
|
38 |
@released
|
sl@0
|
39 |
@since 6.0
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
class TDelimitedPathSegmentParser8 : public TDelimitedParserBase8
|
sl@0
|
42 |
{
|
sl@0
|
43 |
public: // Methods
|
sl@0
|
44 |
|
sl@0
|
45 |
|
sl@0
|
46 |
IMPORT_C TDelimitedPathSegmentParser8();
|
sl@0
|
47 |
|
sl@0
|
48 |
IMPORT_C void Parse(const TDesC8& aPathSegment);
|
sl@0
|
49 |
|
sl@0
|
50 |
IMPORT_C void ParseReverse(const TDesC8& aPathSegment);
|
sl@0
|
51 |
};
|
sl@0
|
52 |
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
Dependencies : CDelimitedStringBase8
|
sl@0
|
55 |
Comments : Provides functionality to create a delimited path segment where components of the
|
sl@0
|
56 |
path segment delimited by '/' as defined in RFC2396.
|
sl@0
|
57 |
@publishedAll
|
sl@0
|
58 |
@released
|
sl@0
|
59 |
@since 6.0
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
class CDelimitedPathSegment8 : public CDelimitedDataBase8
|
sl@0
|
62 |
{
|
sl@0
|
63 |
public: // Methods
|
sl@0
|
64 |
|
sl@0
|
65 |
IMPORT_C static CDelimitedPathSegment8* NewL(const TDesC8& aPathSegment);
|
sl@0
|
66 |
|
sl@0
|
67 |
IMPORT_C static CDelimitedPathSegment8* NewLC(const TDesC8& aPathSegment);
|
sl@0
|
68 |
|
sl@0
|
69 |
IMPORT_C ~CDelimitedPathSegment8();
|
sl@0
|
70 |
|
sl@0
|
71 |
IMPORT_C void InsertAndEscapeCurrentL(const TDesC8& aParam);
|
sl@0
|
72 |
|
sl@0
|
73 |
IMPORT_C void PushAndEscapeFrontL(const TDesC8& aParam);
|
sl@0
|
74 |
|
sl@0
|
75 |
IMPORT_C void PushAndEscapeBackL(const TDesC8& aParam);
|
sl@0
|
76 |
|
sl@0
|
77 |
private: // Methods
|
sl@0
|
78 |
|
sl@0
|
79 |
CDelimitedPathSegment8();
|
sl@0
|
80 |
|
sl@0
|
81 |
void ConstructL(const TDesC8& aPathSegment);
|
sl@0
|
82 |
|
sl@0
|
83 |
};
|
sl@0
|
84 |
|
sl@0
|
85 |
#endif // __DELIMITEDPATHSEGMENT8_H__
|