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_IMPLEMENTATION_INFORMATION_API_DATA_H__)
21 #define __T_IMPLEMENTATION_INFORMATION_API_DATA_H__
24 #include "DataWrapperBase.h"
26 // Classes to get to protected members
31 #include <ecom/implementationinformation.h>
33 class CT_ImplementationInformationData: public CDataWrapperBase
37 * Two phase constructor
39 static CT_ImplementationInformationData* NewL();
44 ~CT_ImplementationInformationData();
47 * Process a command read from the ini file
49 * @param aCommand The command to process
50 * @param aSection The section in the ini containing data for the command
51 * @param aAsyncErrorIndex Command index for async calls to return errors to
53 * @return ETrue if the command is processed
55 * @leave System wide error
57 virtual TBool DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
60 * @return Pointer to the object that the data wraps
62 inline virtual TAny* GetObject()
64 return iImplementationInformation;
68 * Set the object that the data wraps
70 * @param aObject object that the wrapper is testing
72 * @leave KErrNotSupported if the the function is not supported
74 virtual inline void SetObjectL(TAny* aObject)
76 iImplementationInformation=static_cast<CImplementationInformation*>(aObject);
81 * Public constructor. First phase construction
83 CT_ImplementationInformationData();
86 * Second phase construction
91 inline void DoCmdDestroy();
92 inline void DoCmdDisplayName(const TDesC& aSection);
93 inline void DoCmdDataType(const TDesC& aSection);
94 inline void DoCmdOpaqueData(const TDesC& aSection);
95 inline void DoCmdImplementationUid(const TDesC& aSection);
96 inline void DoCmdVersion(const TDesC& aSection);
97 inline void DoCmdDisabled(const TDesC& aSection);
98 inline void DoCmdSetDisabled(const TDesC& aSection);
99 inline void DoCmdDrive(const TDesC& aSection);
100 inline void DoCmdRomOnly(const TDesC& aSection);
101 inline void DoCmdRomBased(const TDesC& aSection);
103 TBool GetUid(const TDesC& aSection, TUid& aUid);
104 TBool GetExpectedString(const TDesC& aSection, TPtrC& aDataType);
105 TBool GetExpectedResult(const TDesC& aSection, TInt& aExpectedResult);
106 TBool GetExpectedHexResult(const TDesC& aSection, TInt& aExpectedResult);
107 TBool GetDisabled(const TDesC& aSection, TBool& aDisabled);
108 TBool GetExpectedBool(const TDesC& aSection, TBool& aBool);
109 TBool GetArrayElement(const TDesC& aSection, TInt& aArrayElement);
115 CImplementationInformation* iImplementationInformation;
118 #endif /* __T_IMPLEMENTATION_INFORMATION_API_DATA_H__ */