os/mm/mm_plat/audio_routing_proxy_api/inc/AudioInputProxy.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2007 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: Audio Input Proxy header
    15 *
    16 */
    17 
    18 
    19 #ifndef CAUDIOINPUTPROXY_H
    20 #define CAUDIOINPUTPROXY_H
    21 
    22 //  INCLUDES
    23 #include "AudioInput.h"
    24 #include <mmf/common/mmfcontrollerframework.h>
    25 #include <MCustomCommand.h>
    26 // FORWARD DECLARATIONS
    27 class CCustomCommandUtility;
    28 class CCustomInterfaceUtility;
    29 
    30 
    31 // CLASS DECLARATION
    32 
    33 /**
    34 *  ?one_line_short_description.
    35 *  ?other_description_lines
    36 */
    37 class CAudioInputProxy: public CAudioInput
    38 	{
    39 	friend class CAudioInput;
    40     public:  // Constructors and destructor
    41 
    42 		IMPORT_C static CAudioInputProxy* NewL(TMMFMessageDestinationPckg aMessageHandler, 
    43 												MCustomCommand& aCustomCommand,
    44 												CCustomInterfaceUtility* aCustomInterfaceUtility);
    45 		
    46 		/**
    47 		* Destructor.
    48 		*/
    49 		virtual ~CAudioInputProxy();
    50 
    51 		IMPORT_C static const TUid Uid();
    52 		
    53 		/**
    54 		* ?member_description.
    55 		* @param ?arg1 ?description
    56 		* @return ?description
    57 		*/
    58 		virtual TAudioInputArray AudioInput();
    59 
    60 		/**
    61 		* ?member_description.
    62 		* @param ?arg1 ?description
    63 		* @return ?description
    64 		*/
    65 		virtual void SetAudioInputL(TAudioInputArray aAudioInputs);        
    66 
    67 	protected:
    68 		/**
    69 		* C++ default constructor.
    70 		*/
    71 		CAudioInputProxy(TMMFMessageDestinationPckg aMessageHandler, 
    72 												MCustomCommand& aCustomCommand,
    73 												CCustomInterfaceUtility* aCustomInterfaceUtility);
    74 		/**
    75 		* EPOC constructor.
    76 		*/
    77 		void ConstructL();
    78 
    79     private:    // Data
    80 		MCustomCommand*                			iCustomCommand;
    81 		CArrayFixFlat<TAudioInputPreference>  	iInputArray;
    82 		TMMFMessageDestinationPckg            	iMessageHandler;
    83 		CCustomInterfaceUtility* 				iCustomInterfaceUtility;
    84 	};
    85 
    86 #endif      // CAUDIOINPUTPROXY_H
    87             
    88 // End of File