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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This file provides an internal API used by the classes defined in
20 @file DelimitedParserInternal.h
21 @see DelimitedParser.h
24 #ifndef __DELIMITEDINTERNAL_H__
25 #define __DELIMITEDINTERNAL_H__
31 template<class TDesCType>
32 TInt NextDelimiterPosition(const TDesCType& aData, TInt aStartPos, TInt aDelimiter, TDelimitedDataParseMode aMode);
34 template<class TDesCType>
35 TInt PrevDelimiterPosition(const TDesCType& aData, TInt aStartPos, TInt aDelimiter, TDelimitedDataParseMode aMode);
37 template<class TDesCType>
38 TInt RightDelimiterPosition(const TDesCType& aData, TInt aStartPos, TInt aDelimiter);
40 template<class TDesCType>
41 TInt LeftDelimiterPosition(const TDesCType& aData, TInt aStartPos, TInt aDelimiter);
43 template<class TDesCType>
44 TInt InitialDelimiterPosition(const TDesCType& aData, TDelimitedDataParseMode aMode);
46 #endif // __DELIMITEDINTERNAL_H__