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 __DELIMITEDPATHSEGMENT8_H__ sl@0: #define __DELIMITEDPATHSEGMENT8_H__ sl@0: sl@0: /** sl@0: @file DelimitedPathSegment8.h sl@0: Comments : This file contains the API definition for the classes TDelimitedPathSegmentParser8 sl@0: and CDelimitedPathSegment8. 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 : TDelimitedParserBase8 sl@0: Comments : Derived class from TDelimitedParserBase providing a class for parsing sl@0: path segments delimited by a ';' as defined in RFC2396. sl@0: @publishedAll sl@0: @released sl@0: @since 6.0 sl@0: */ sl@0: class TDelimitedPathSegmentParser8 : public TDelimitedParserBase8 sl@0: { sl@0: public: // Methods sl@0: sl@0: sl@0: IMPORT_C TDelimitedPathSegmentParser8(); sl@0: sl@0: IMPORT_C void Parse(const TDesC8& aPathSegment); sl@0: sl@0: IMPORT_C void ParseReverse(const TDesC8& aPathSegment); sl@0: }; sl@0: sl@0: /** sl@0: Dependencies : CDelimitedStringBase8 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 CDelimitedPathSegment8 : public CDelimitedDataBase8 sl@0: { sl@0: public: // Methods sl@0: sl@0: IMPORT_C static CDelimitedPathSegment8* NewL(const TDesC8& aPathSegment); sl@0: sl@0: IMPORT_C static CDelimitedPathSegment8* NewLC(const TDesC8& aPathSegment); sl@0: sl@0: IMPORT_C ~CDelimitedPathSegment8(); sl@0: sl@0: IMPORT_C void InsertAndEscapeCurrentL(const TDesC8& aParam); sl@0: sl@0: IMPORT_C void PushAndEscapeFrontL(const TDesC8& aParam); sl@0: sl@0: IMPORT_C void PushAndEscapeBackL(const TDesC8& aParam); sl@0: sl@0: private: // Methods sl@0: sl@0: CDelimitedPathSegment8(); sl@0: sl@0: void ConstructL(const TDesC8& aPathSegment); sl@0: sl@0: }; sl@0: sl@0: #endif // __DELIMITEDPATHSEGMENT8_H__