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 __DELIMITEDPATH16_H__ sl@0: #define __DELIMITEDPATH16_H__ sl@0: sl@0: /** sl@0: @file DelimitedPath16.h sl@0: Comments : This file contains the API definition for the classes sl@0: TDelimitedPathParser16 and CDelimitedPath16. 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 paths sl@0: delimited by '/' as defined in RFC2396. sl@0: @publishedAll sl@0: @released sl@0: @since 6.0 sl@0: */ sl@0: class TDelimitedPathParser16 : public TDelimitedParserBase16 sl@0: { sl@0: public: // Methods sl@0: sl@0: IMPORT_C TDelimitedPathParser16(); sl@0: sl@0: IMPORT_C void Parse(const TDesC16& aPath); sl@0: sl@0: IMPORT_C void ParseReverse(const TDesC16& aPath); sl@0: }; sl@0: sl@0: /** sl@0: Dependencies : CDelimitedStringBase16 sl@0: Comments : Provides functionality to create a delimited path where components of the sl@0: path delimited by '/' as defined in RFC2396. sl@0: @publishedAll sl@0: @released sl@0: @since 6.0 sl@0: */ sl@0: class CDelimitedPath16 : public CDelimitedDataBase16 sl@0: { sl@0: public: // Methods sl@0: sl@0: IMPORT_C static CDelimitedPath16* NewL(const TDesC16& aPath); sl@0: sl@0: IMPORT_C static CDelimitedPath16* NewLC(const TDesC16& aPath); sl@0: sl@0: IMPORT_C ~CDelimitedPath16(); sl@0: sl@0: IMPORT_C void InsertAndEscapeCurrentL(const TDesC16& aSegment); sl@0: sl@0: IMPORT_C void PushAndEscapeBackL(const TDesC16& aSegment); sl@0: sl@0: IMPORT_C void PushAndEscapeFrontL(const TDesC16& aSegment); sl@0: sl@0: private: // Methods sl@0: sl@0: CDelimitedPath16(); sl@0: sl@0: void ConstructL(const TDesC16& aPath); sl@0: sl@0: }; sl@0: sl@0: /** sl@0: typedef sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: typedef TDelimitedPathParser16 TDelimitedPathParser; sl@0: sl@0: /** sl@0: typedef sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: typedef CDelimitedPath16 CDelimitedPath; sl@0: sl@0: #endif // __DELIMITEDPATH16_H__ sl@0: sl@0: