os/mm/devsound/a3fdevsound/src/devsoundadaptor/cdevgencontrol.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2006-2009 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:
    15 *
    16 */
    17 
    18 
    19 
    20 #ifndef CDEVGENCONTROL_H
    21 #define CDEVGENCONTROL_H
    22 
    23 #include <e32base.h>
    24 
    25 #include "cdevaudiocontrol.h"
    26 #include <a3f/a3f_trace_utils.h>
    27 
    28 /**
    29  * CDevGenControl.
    30  *
    31  * ?description
    32  *
    33  * @lib mmfdevsoundadaptation.lib
    34  * @since
    35  */
    36 
    37 NONSHARABLE_CLASS(CDevGenControl) : public CDevAudioControl
    38 	{
    39 public:
    40 
    41 	/**
    42 	* Destructor.
    43 	* Releases all resources and deletes all objects owned by this instance.
    44 	*/
    45 	~CDevGenControl();
    46 
    47 	static CDevGenControl* NewL(CDevAudio* aDevAudio, MDevSoundAdaptationObserver& aDevSoundObserver);
    48 
    49 	void ConstructL(CDevAudio* aDevAudio, MDevSoundAdaptationObserver& aDevSoundObserver);
    50 
    51 private:
    52 	CDevGenControl();
    53 	};
    54 
    55 #endif // CDEVGENCONTROL_H