First public contribution.
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 #if (!defined __T_ECOM_RESOLVER_PARAMS_API_DATA_H__)
21 #define __T_ECOM_RESOLVER_PARAMS_API_DATA_H__
24 #include "DataWrapperBase.h"
26 // Classes to get to protected members
31 #include <ecom/implementationinformation.h>
33 class CT_EComResolverParamsData: public CDataWrapperBase
36 static CT_EComResolverParamsData* NewL();
38 ~CT_EComResolverParamsData();
40 virtual TAny* GetObject();
41 virtual TBool DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
44 CT_EComResolverParamsData();
48 void DoCmdDataType(const TDesC& aSection);
49 void DoCmdSetDataType(const TDesC& aSection);
50 void DoCmdSetGenericMatch(const TDesC& aSection);
51 void DoCmdIsGenericMatch(const TDesC& aSection);
52 void DoCmdSetWildcardMatch(const TDesC& aSection);
53 void DoCmdIsWildcardMatch(const TDesC& aSection);
55 TBool GetExpectedString(const TDesC& aSection, TPtrC& aExpectedString);
56 TBool GetDataType(const TDesC& aSection, TBuf8<KMaxTestExecuteCommandLength>& aDataType);
57 TBool GetGenericMatch(const TDesC& aSection, TBool& aDisabled);
58 TBool GetWildcardMatch(const TDesC& aSection, TBool& aDisabled);
59 TBool GetExpectedBool(const TDesC& aSection, TBool& aBool);
65 TEComResolverParams iResolverParams;
66 TBuf8<KMaxTestExecuteCommandLength> iDataType;
69 #endif /* __T_ECOM_RESOLVER_PARAMS_API_DATA_H__ */