os/ossrv/genericservices/httputils/EscapeUtils/EscapeUtilsInternal.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // File contains local functions for use by the Escaping utility functions
    15 // defined in EscapeUtils.h.
    16 // 
    17 //
    18 
    19 /**
    20  @file EscapeUtilsInternal.h
    21  @see EscapeUtils.h
    22 */
    23 
    24 #ifndef __ESCAPEUTILSINTERNAL_H__
    25 #define __ESCAPEUTILSINTERNAL_H__
    26 
    27 // System includes
    28 //
    29 #include <e32base.h>
    30 
    31 template<class TDesCType, class TPtrType>
    32 TInt EscapeEncodeData(const TDesCType& aData, const TDesCType& aReservedChars, TPtrType& aEncodedData);
    33 
    34 template<class TDesCType, class TPtrType>
    35 TInt EscapeDecodeData(const TDesCType& aData, TPtrType& aDecodedData);
    36 
    37 template<class TDesCType>
    38 TBool CheckAndConvertEscapeTriple(const TDesCType& aData, TInt& aHexValue);
    39 
    40 #endif	// __ESCAPEUTILSINTERNAL_H__