diff -r 000000000000 -r bde4ae8d615e os/mm/mm_plat/custom_interface_utility_api/inc/CustomCommandUtility.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/mm/mm_plat/custom_interface_utility_api/inc/CustomCommandUtility.h Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,58 @@ +/* +* Copyright (c) 2004 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: Definition of custom command utility classes +* +*/ + + +#ifndef __CUSTOMCOMMANDUTILITY_H +#define __CUSTOMCOMMANDUTILITY_H + +#include +#include +//#include "CustomCommandTypes.h" + + +// FORWARD DECLARATION +class CMdaAudioConvertUtility; +class CMdaAudioPlayerUtility; +class CMdaAudioRecorderUtility; +class CMidiClientUtility; +class CDrmPlayerUtility; +class CVideoPlayerUtility; +class CVideoRecorderUtility; + +// CLASS DECLARATION +class CCustomCommandUtility : public CBase, + public MCustomCommand + { +public: + + IMPORT_C static CCustomCommandUtility* NewL(CMdaAudioConvertUtility& aUtility); + + IMPORT_C static CCustomCommandUtility* NewL(CMdaAudioPlayerUtility& aUtility); + + IMPORT_C static CCustomCommandUtility* NewL(CMdaAudioRecorderUtility& aUtility, + TBool aRecordStream); + + IMPORT_C static CCustomCommandUtility* NewL(CMidiClientUtility& aUtility); + + IMPORT_C static CCustomCommandUtility* NewL(CDrmPlayerUtility& aUtility); + + IMPORT_C static CCustomCommandUtility* NewL(CVideoPlayerUtility& aUtility); + + IMPORT_C static CCustomCommandUtility* NewL(CVideoRecorderUtility& aUtility); + }; + +#endif