sl@0: // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef __DELIMITEDPATHSEGMENT16_H__ sl@0: #define __DELIMITEDPATHSEGMENT16_H__ sl@0: sl@0: /** sl@0: @file DelimitedPathSegment16.h sl@0: Comments : This file contains the API definition for the classes TDelimitedPathSegmentParser16 sl@0: and CDelimitedPathSegment16. sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: sl@0: // System includes sl@0: // sl@0: #include sl@0: #include sl@0: sl@0: sl@0: /** sl@0: Dependencies : TDelimitedParserBase16 sl@0: Comments : Derived class from TDelimitedParserBase providing a class for parsing path segments sl@0: delimited by '/' as defined in RFC2396. sl@0: @publishedAll sl@0: @released sl@0: @since 6.0 sl@0: */ sl@0: class TDelimitedPathSegmentParser16 : public TDelimitedParserBase16 sl@0: { sl@0: public: // Methods sl@0: sl@0: IMPORT_C TDelimitedPathSegmentParser16(); sl@0: sl@0: IMPORT_C void Parse(const TDesC16& aPathSegment); sl@0: sl@0: IMPORT_C void ParseReverse(const TDesC16& aPathSegment); sl@0: }; sl@0: sl@0: /** sl@0: Dependencies : CDelimitedStringBase16 sl@0: Comments : Provides functionality to create a delimited path segment where components of the sl@0: path segment delimited by '/' as defined in RFC2396. sl@0: @publishedAll sl@0: @released sl@0: @since 6.0 sl@0: */ sl@0: class CDelimitedPathSegment16 : public CDelimitedDataBase16 sl@0: { sl@0: public: // Methods sl@0: sl@0: IMPORT_C static CDelimitedPathSegment16* NewL(const TDesC16& aPathSegment); sl@0: sl@0: IMPORT_C static CDelimitedPathSegment16* NewLC(const TDesC16& aPathSegment); sl@0: sl@0: IMPORT_C ~CDelimitedPathSegment16(); sl@0: sl@0: IMPORT_C void InsertAndEscapeCurrentL(const TDesC16& aParam); sl@0: sl@0: IMPORT_C void PushAndEscapeBackL(const TDesC16& aParam); sl@0: sl@0: IMPORT_C void PushAndEscapeFrontL(const TDesC16& aParam); sl@0: sl@0: private: // Methods sl@0: sl@0: CDelimitedPathSegment16(); sl@0: sl@0: void ConstructL(const TDesC16& aPathSegment); sl@0: sl@0: }; sl@0: sl@0: /** sl@0: typedef sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: typedef TDelimitedPathSegmentParser16 TDelimitedPathSegmentParser; sl@0: sl@0: /** sl@0: typedef sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: typedef CDelimitedPathSegment16 CDelimitedPathSegment; sl@0: sl@0: #endif // __DELIMITEDPATHSEGMENT16_H__