1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/httputils/inc/DelimitedPathSegment16.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,98 @@
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 __DELIMITEDPATHSEGMENT16_H__
1.20 +#define __DELIMITEDPATHSEGMENT16_H__
1.21 +
1.22 +/**
1.23 + @file DelimitedPathSegment16.h
1.24 + Comments : This file contains the API definition for the classes TDelimitedPathSegmentParser16
1.25 + and CDelimitedPathSegment16.
1.26 + @publishedAll
1.27 + @released
1.28 + */
1.29 +
1.30 +// System includes
1.31 +//
1.32 +#include <e32base.h>
1.33 +#include <delimitedparser16.h>
1.34 +
1.35 +
1.36 +/**
1.37 +Dependencies : TDelimitedParserBase16
1.38 +Comments : Derived class from TDelimitedParserBase providing a class for parsing path segments
1.39 +delimited by '/' as defined in RFC2396.
1.40 +@publishedAll
1.41 +@released
1.42 +@since 6.0
1.43 +*/
1.44 +class TDelimitedPathSegmentParser16 : public TDelimitedParserBase16
1.45 + {
1.46 +public: // Methods
1.47 +
1.48 + IMPORT_C TDelimitedPathSegmentParser16();
1.49 +
1.50 + IMPORT_C void Parse(const TDesC16& aPathSegment);
1.51 +
1.52 + IMPORT_C void ParseReverse(const TDesC16& aPathSegment);
1.53 + };
1.54 +
1.55 +/**
1.56 +Dependencies : CDelimitedStringBase16
1.57 +Comments : Provides functionality to create a delimited path segment where components of the
1.58 +path segment delimited by '/' as defined in RFC2396.
1.59 +@publishedAll
1.60 +@released
1.61 +@since 6.0
1.62 +*/
1.63 +class CDelimitedPathSegment16 : public CDelimitedDataBase16
1.64 + {
1.65 +public: // Methods
1.66 +
1.67 + IMPORT_C static CDelimitedPathSegment16* NewL(const TDesC16& aPathSegment);
1.68 +
1.69 + IMPORT_C static CDelimitedPathSegment16* NewLC(const TDesC16& aPathSegment);
1.70 +
1.71 + IMPORT_C ~CDelimitedPathSegment16();
1.72 +
1.73 + IMPORT_C void InsertAndEscapeCurrentL(const TDesC16& aParam);
1.74 +
1.75 + IMPORT_C void PushAndEscapeBackL(const TDesC16& aParam);
1.76 +
1.77 + IMPORT_C void PushAndEscapeFrontL(const TDesC16& aParam);
1.78 +
1.79 +private: // Methods
1.80 +
1.81 + CDelimitedPathSegment16();
1.82 +
1.83 + void ConstructL(const TDesC16& aPathSegment);
1.84 +
1.85 + };
1.86 +
1.87 +/**
1.88 +typedef
1.89 +@publishedAll
1.90 +@released
1.91 +*/
1.92 +typedef TDelimitedPathSegmentParser16 TDelimitedPathSegmentParser;
1.93 +
1.94 +/**
1.95 +typedef
1.96 +@publishedAll
1.97 +@released
1.98 +*/
1.99 +typedef CDelimitedPathSegment16 CDelimitedPathSegment;
1.100 +
1.101 +#endif // __DELIMITEDPATHSEGMENT16_H__