diff -r 6aaf0276100e -r c76a0b1755b9 phoneplugins/csplugin/inc/mcsptestcallprovider.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/phoneplugins/csplugin/inc/mcsptestcallprovider.h Fri Sep 17 08:29:19 2010 +0300 @@ -0,0 +1,43 @@ +/* + * Copyright (c) 2010 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: Interface that enables initializing call provider + * for testing purposes. + * + */ + +#ifndef MCSPTESTCALLPROVIDER_H_ +#define MCSPTESTCALLPROVIDER_H_ + +class CSPAudioHandlerBase; + +/** + * Interface that enables initializing call provider + * with dummy audio handler for testing purposes. + * + */ +class MCSPTestCallProvider + { +public: + + /** + * Initializes call provider for testing purposes. + */ + virtual void InitializeL( const MCCPObserver& aObserver, + const MCCPSsObserver& aSsObserver, + CSPAudioHandlerBase* aAudioHandler ) = 0; + }; + + + +#endif /* MCSPTESTCALLPROVIDER_H_ */