diff -r 6aaf0276100e -r c76a0b1755b9 phoneplugins/csplugin/inc/mcspaudiohandlerobserver.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/phoneplugins/csplugin/inc/mcspaudiohandlerobserver.h Fri Sep 17 08:29:19 2010 +0300 @@ -0,0 +1,34 @@ +/* + * Copyright (c) 2006 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: Observer interface + * + */ + +#ifndef MCSPAUDIOHANDLEROBSERVER_H +#define MCSPAUDIOHANDLEROBSERVER_H + +/** + * Observer for events. + * + */ +class MCSPAudioHandlerObserver + { +public: + /** + * Indicates failure of audio streams start request. + */ + virtual void AudioStartingFailed() = 0; + }; + +#endif // MCSPAUDIOHANDLEROBSERVER_H