1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/httputils/inc/DelimitedPathSegment8.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,85 @@
1.4 +// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#ifndef __DELIMITEDPATHSEGMENT8_H__
1.20 +#define __DELIMITEDPATHSEGMENT8_H__
1.21 +
1.22 +/**
1.23 + @file DelimitedPathSegment8.h
1.24 + Comments : This file contains the API definition for the classes TDelimitedPathSegmentParser8
1.25 + and CDelimitedPathSegment8.
1.26 + @publishedAll
1.27 + @released
1.28 + */
1.29 +
1.30 +// System includes
1.31 +//
1.32 +#include <e32base.h>
1.33 +#include <delimitedparser8.h>
1.34 +
1.35 +
1.36 +/**
1.37 +Dependencies : TDelimitedParserBase8
1.38 +Comments : Derived class from TDelimitedParserBase providing a class for parsing
1.39 +path segments delimited by a ';' as defined in RFC2396.
1.40 +@publishedAll
1.41 +@released
1.42 +@since 6.0
1.43 +*/
1.44 +class TDelimitedPathSegmentParser8 : public TDelimitedParserBase8
1.45 + {
1.46 +public: // Methods
1.47 +
1.48 +
1.49 + IMPORT_C TDelimitedPathSegmentParser8();
1.50 +
1.51 + IMPORT_C void Parse(const TDesC8& aPathSegment);
1.52 +
1.53 + IMPORT_C void ParseReverse(const TDesC8& aPathSegment);
1.54 + };
1.55 +
1.56 +/**
1.57 +Dependencies : CDelimitedStringBase8
1.58 +Comments : Provides functionality to create a delimited path segment where components of the
1.59 +path segment delimited by '/' as defined in RFC2396.
1.60 +@publishedAll
1.61 +@released
1.62 +@since 6.0
1.63 +*/
1.64 +class CDelimitedPathSegment8 : public CDelimitedDataBase8
1.65 + {
1.66 +public: // Methods
1.67 +
1.68 + IMPORT_C static CDelimitedPathSegment8* NewL(const TDesC8& aPathSegment);
1.69 +
1.70 + IMPORT_C static CDelimitedPathSegment8* NewLC(const TDesC8& aPathSegment);
1.71 +
1.72 + IMPORT_C ~CDelimitedPathSegment8();
1.73 +
1.74 + IMPORT_C void InsertAndEscapeCurrentL(const TDesC8& aParam);
1.75 +
1.76 + IMPORT_C void PushAndEscapeFrontL(const TDesC8& aParam);
1.77 +
1.78 + IMPORT_C void PushAndEscapeBackL(const TDesC8& aParam);
1.79 +
1.80 +private: // Methods
1.81 +
1.82 + CDelimitedPathSegment8();
1.83 +
1.84 + void ConstructL(const TDesC8& aPathSegment);
1.85 +
1.86 + };
1.87 +
1.88 +#endif // __DELIMITEDPATHSEGMENT8_H__