genericservices/httputils/DelimitedParser/DelimitedParserInternal.h
changeset 0 e4d67989cc36
equal deleted inserted replaced
-1:000000000000 0:e4d67989cc36
       
     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 // This file provides an internal API used by the classes defined in 
       
    15 // DelimitedParser.h
       
    16 // 
       
    17 //
       
    18 
       
    19 /**
       
    20  @file DelimitedParserInternal.h
       
    21  @see DelimitedParser.h
       
    22 */
       
    23 
       
    24 #ifndef __DELIMITEDINTERNAL_H__
       
    25 #define __DELIMITEDINTERNAL_H__
       
    26 
       
    27 // System includes
       
    28 //
       
    29 #include <e32base.h>
       
    30 
       
    31 template<class TDesCType>
       
    32 TInt NextDelimiterPosition(const TDesCType& aData, TInt aStartPos, TInt aDelimiter, TDelimitedDataParseMode aMode);
       
    33 
       
    34 template<class TDesCType>
       
    35 TInt PrevDelimiterPosition(const TDesCType& aData, TInt aStartPos, TInt aDelimiter, TDelimitedDataParseMode aMode);
       
    36 
       
    37 template<class TDesCType>
       
    38 TInt RightDelimiterPosition(const TDesCType& aData, TInt aStartPos, TInt aDelimiter);
       
    39 
       
    40 template<class TDesCType>
       
    41 TInt LeftDelimiterPosition(const TDesCType& aData, TInt aStartPos, TInt aDelimiter);
       
    42 
       
    43 template<class TDesCType>
       
    44 TInt InitialDelimiterPosition(const TDesCType& aData, TDelimitedDataParseMode aMode);
       
    45 
       
    46 #endif	// __DELIMITEDINTERNAL_H__