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_DATA_H__
21 #define __T_PARSE_PTR_DATA_H__
24 #include "T_ParseBaseData.h"
31 class CT_ParsePtrData: public CT_ParseBaseData
34 static CT_ParsePtrData* NewL();
37 virtual TParseBase* GetParse();
38 virtual TBool DoCommandL( const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
39 virtual TAny* GetObject();
45 private: // command processors
46 inline void DoCleanup();
47 inline void DoCmdNew( const TDesC& aSection );
48 inline void DoCmdAddDir( const TDesC& aSection );
49 inline void DoCmdPopDir();
54 // TParsePtr class instance that is tested
57 // Buffer of the filename to be parsed
58 TBuf<KMaxFileName> iFileName;
61 #endif // __T_PARSE_PTR_DATA_H__