Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #ifndef __T_PARSE_PTR_C_DATA_H__
21 #define __T_PARSE_PTR_C_DATA_H__
24 #include "T_ParseBaseData.h"
31 class CT_ParsePtrCData: public CT_ParseBaseData
34 static CT_ParsePtrCData* NewL();
37 virtual TParseBase* GetParse();
38 virtual TBool DoCommandL( const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
44 private: // command processors
45 inline void DoCleanup();
46 inline void DoCmdNew( const TDesC& aSection );
47 inline void DoCmdAddDir( const TDesC& aSection );
48 inline void DoCmdPopDir();
52 // TParsePtrC class instance that is tested
53 TParsePtrC* iParsePtrC;
55 // Buffer of the filename to be parsed
56 TBuf<KMaxFileName*2> iFileName;
59 #endif // __T_PARSE_PTR_C_DATA_H__