audiostubs/devsoundextensions_stubs/audioeffectscistubs/environmentalreverbcistub/inc/EnvironmentalReverbCI.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 19 Feb 2010 22:36:12 +0200
branchRCL_3
changeset 10 b2544ba3bc16
parent 9 f935d51494d1
permissions -rw-r--r--
Revision: 201007 Kit: 201007

/*
* 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: Audio Stubs -  This is the definition of the EnvironmentalReverb Custom Interface class.
*
*
*/


#include <EnvironmentalReverbBase.h>
#include <MEnvironmentalReverbObserver.h>

class CMMFDevSound;

class CEnvironmentalReverbCI : public CEnvironmentalReverb
	{
	public: // Constructor and Destructor

        /**
        * Two-phased constructor.
        */
		IMPORT_C static CEnvironmentalReverbCI* NewL(CMMFDevSound& aDevSound);

        /**
        * Destructor.
        */
		virtual ~CEnvironmentalReverbCI();

		/**
		* From CAudioEffect
        * Apply effect settings
        * @since 3.0
        */
        virtual void ApplyL();

		IMPORT_C static CEnvironmentalReverbCI* NewL();

	private:

        /**
        * C++ default constructor.
        */
        CEnvironmentalReverbCI(CMMFDevSound& aDevSound);
        CEnvironmentalReverbCI();

	private: // Data

		CMMFDevSound* iDevSound;
	};