os/ossrv/genericservices/httputils/inc/DelimitedQuery16.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#ifndef __DELIMITEDQUERY16_H__
sl@0
    17
#define __DELIMITEDQUERY16_H__
sl@0
    18
sl@0
    19
/**
sl@0
    20
	@file DelimitedQuery16.h
sl@0
    21
	Comments :	This file contains the API definition for the classes TDelimitedQueryParser16
sl@0
    22
				and CDelimitedQuery16.
sl@0
    23
	@publishedAll
sl@0
    24
	@released
sl@0
    25
 */
sl@0
    26
sl@0
    27
// System includes
sl@0
    28
//
sl@0
    29
#include <e32base.h>
sl@0
    30
#include <delimitedparser16.h>
sl@0
    31
sl@0
    32
sl@0
    33
/**
sl@0
    34
Dependencies : TDelimitedParserBase16
sl@0
    35
Comments : Derived class from TDelimitedParserBase providing a class for parsing querys
sl@0
    36
delimited by '&' as defined in RFC2396.
sl@0
    37
@publishedAll
sl@0
    38
@released
sl@0
    39
@since 6.0
sl@0
    40
*/
sl@0
    41
class TDelimitedQueryParser16 : public TDelimitedParserBase16
sl@0
    42
	{
sl@0
    43
public:	// Methods
sl@0
    44
sl@0
    45
	IMPORT_C TDelimitedQueryParser16();
sl@0
    46
sl@0
    47
	IMPORT_C void Parse(const TDesC16& aQuery);
sl@0
    48
sl@0
    49
	IMPORT_C void ParseReverse(const TDesC16& aQuery);
sl@0
    50
	};
sl@0
    51
sl@0
    52
/**
sl@0
    53
Dependencies : CDelimitedStringBase16
sl@0
    54
Comments : Provides functionality to create a delimited query where components of the 
sl@0
    55
query delimited by '&' as defined in RFC2396.
sl@0
    56
@publishedAll
sl@0
    57
@released
sl@0
    58
@since 6.0
sl@0
    59
*/
sl@0
    60
class CDelimitedQuery16 : public CDelimitedDataBase16
sl@0
    61
	{
sl@0
    62
public:	// Methods
sl@0
    63
sl@0
    64
	IMPORT_C static CDelimitedQuery16* NewL(const TDesC16& aQuery);
sl@0
    65
sl@0
    66
	IMPORT_C static CDelimitedQuery16* NewLC(const TDesC16& aQuery);
sl@0
    67
sl@0
    68
	IMPORT_C ~CDelimitedQuery16();
sl@0
    69
sl@0
    70
	IMPORT_C void InsertAndEscapeCurrentL(const TDesC16& aSegment);
sl@0
    71
sl@0
    72
	IMPORT_C void PushAndEscapeFrontL(const TDesC16& aSegment);
sl@0
    73
sl@0
    74
	IMPORT_C void PushAndEscapeBackL(const TDesC16& aSegment);
sl@0
    75
sl@0
    76
private:	// Methods
sl@0
    77
sl@0
    78
	CDelimitedQuery16();
sl@0
    79
sl@0
    80
	void ConstructL(const TDesC16& aQuery);
sl@0
    81
sl@0
    82
	};
sl@0
    83
sl@0
    84
/**
sl@0
    85
typedef 
sl@0
    86
@publishedAll
sl@0
    87
@released
sl@0
    88
*/
sl@0
    89
typedef TDelimitedQueryParser16	TDelimitedQueryParser;
sl@0
    90
sl@0
    91
/**
sl@0
    92
typedef 
sl@0
    93
@publishedAll
sl@0
    94
@released
sl@0
    95
*/
sl@0
    96
typedef CDelimitedQuery16		CDelimitedQuery;
sl@0
    97
sl@0
    98
#endif	// __DELIMITEDQUERY16_H__