os/mm/mm_plat/custom_interface_utility_api/inc/CustomCommandUtility.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). 
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:  Definition of custom command utility classes
    15 *
    16 */
    17 
    18 
    19 #ifndef __CUSTOMCOMMANDUTILITY_H
    20 #define __CUSTOMCOMMANDUTILITY_H
    21 
    22 #include <e32base.h>
    23 #include <MCustomCommand.h>
    24 //#include "CustomCommandTypes.h"
    25 
    26 
    27 // FORWARD DECLARATION
    28 class CMdaAudioConvertUtility;
    29 class CMdaAudioPlayerUtility;
    30 class CMdaAudioRecorderUtility;
    31 class CMidiClientUtility;
    32 class CDrmPlayerUtility;
    33 class CVideoPlayerUtility;
    34 class CVideoRecorderUtility;
    35 
    36 // CLASS DECLARATION
    37 class CCustomCommandUtility : public CBase,
    38                               public MCustomCommand
    39 	{
    40 public:
    41 	
    42 	IMPORT_C static CCustomCommandUtility* NewL(CMdaAudioConvertUtility&  aUtility);
    43 	
    44 	IMPORT_C static CCustomCommandUtility* NewL(CMdaAudioPlayerUtility&   aUtility);
    45 	
    46 	IMPORT_C static CCustomCommandUtility* NewL(CMdaAudioRecorderUtility& aUtility,
    47 	                                            TBool aRecordStream);
    48 
    49 	IMPORT_C static CCustomCommandUtility* NewL(CMidiClientUtility& aUtility);
    50 
    51 	IMPORT_C static CCustomCommandUtility* NewL(CDrmPlayerUtility& aUtility);
    52 
    53 	IMPORT_C static CCustomCommandUtility* NewL(CVideoPlayerUtility&   aUtility);
    54 
    55 	IMPORT_C static CCustomCommandUtility* NewL(CVideoRecorderUtility&   aUtility);
    56 	};
    57 
    58 #endif