diff -r 67584cc761d1 -r 545d349d14da mmapitest/devsoundexthaitest/inc/T_CRestrictedAudioOutputData.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mmapitest/devsoundexthaitest/inc/T_CRestrictedAudioOutputData.h Wed Jun 09 11:20:54 2010 +0300 @@ -0,0 +1,66 @@ +/* +* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + + + +#ifndef T_CRESTRICTEDAUDIOOUTPUTDATA_H_ +#define T_CRESTRICTEDAUDIOOUTPUTDATA_H_ + +//User Includes +#include "datawrapperbase.h" + +//Epoc Includes +#include //CRestrictedAudioOutput +#include +#include //CMMFDevSound + +/** + * This class tests the CRestrictedAudioOutput API's + */ + +class CT_CRestrictedAudioOutputData : public CDataWrapperBase + { +public: + ~CT_CRestrictedAudioOutputData(); + static CT_CRestrictedAudioOutputData* NewL(); + virtual TAny* GetObject(); + virtual TBool DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/); + +private: + void DestroyData(); +protected: + void DoCmdNewL(const TTEFSectionName& aSection); + void DoCmdDestructor(); + void DoCmdAppendAllowedOutput(const TTEFSectionName& aSection); + void DoCmdRemoveAllowedOutput(const TTEFSectionName& aSection); + void DoCmdGetAllowedOutput(const TTEFSectionName& aSection); + void DoCmdGetAllowedOutputCount(); + void DoCmdReset(); + void DoCmdCommit(); + +private: + /** + * Wrapped object + */ + CRestrictedAudioOutput* iRestrictedAudioOutput; + /** + * Enum that contain allowed output preference + */ + static const TEnumEntryTable iEnumAllowedOutputPreference[]; + }; + +#endif /*T_CRESTRICTEDAUDIOOUTPUTDATA_H_*/