1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
24 #ifndef REMCONABSVOLCONTROLLEROBSERVER_H
25 #define REMCONABSVOLCONTROLLEROBSERVER_H
30 Client-implemented mixin- notifies the client of incoming AbsVol commands.
32 class MRemConAbsVolControllerObserver
36 A response to a 'get absolute volume' command has been received.
37 @param aAbsVol The relative volume.
38 @param aMaxVol The maximum against which aAbsVol is relative.
39 @param aError The response error.
41 virtual void MrcavcoGetAbsoluteVolumeResponse(TUint aAbsVol, TUint aMaxVol, TInt aError);
44 A response to a 'set absolute volume' command has been received.
45 @param aError The response error.
47 virtual void MrcavcoSetAbsoluteVolumeResponse(TInt aError);
50 #endif // REMCONABSVOLCONTROLLEROBSERVER_H