diff -r 000000000000 -r 094583676ce7 wvuing/wvaudiomanager/Inc/MCAAudioInterface.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wvuing/wvaudiomanager/Inc/MCAAudioInterface.h Thu Dec 17 08:41:52 2009 +0200 @@ -0,0 +1,63 @@ +/* +* Copyright (c) 2009 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 interface +* +*/ + +#ifndef MCCAAUDIOINTERFACE_H +#define MCCAAUDIOINTERFACE_H + + +#include +#include +#include +#include + +#include +#include +#include +#include + +class MCAAudioManagerObserver; + +class MCAAudioInterface + + { + public: + + virtual void PlayL() = 0; + + virtual void Stop() = 0; + + virtual void SetVolume( TInt aVolume ) = 0; + + + virtual void SetRingingType( TProfileRingingType aRingingType ) = 0; + + + virtual void SetVibra( TBool aVibra ) = 0; + + virtual void AddObserverL( const MCAAudioManagerObserver* aObserver ) = 0; + + virtual void RemoveObserver( const MCAAudioManagerObserver* aObserver ) = 0; + + + + virtual ~MCAAudioInterface() {}; + + + }; + + +#endif \ No newline at end of file