radioapp/radioenginewrapper/src/radioenginewrapperobserver.cpp
changeset 16 f54ebcfc1b80
child 28 075425b8d9a4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/radioapp/radioenginewrapper/src/radioenginewrapperobserver.cpp	Mon May 03 12:31:41 2010 +0300
@@ -0,0 +1,107 @@
+/*
+* 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:
+*
+*/
+
+#include "radioenginewrapperobserver.h"
+
+/*!
+ *
+ * @param frequency
+ * @param commandSender
+ */
+void RadioEngineWrapperObserver::tunedToFrequency( uint frequency, int reason )
+{
+    // Default implementation does nothing
+    Q_UNUSED( frequency );
+    Q_UNUSED( reason );
+}
+
+/*!
+ *
+ * @param radioIsOn
+ */
+void RadioEngineWrapperObserver::radioStatusChanged( bool radioIsOn )
+{
+    // Default implementation does nothing
+    Q_UNUSED( radioIsOn );
+}
+
+/*!
+ *
+ * @param available
+ */
+void RadioEngineWrapperObserver::rdsAvailabilityChanged( bool available )
+{
+    // Default implementation does nothing
+    Q_UNUSED( available );
+}
+
+/*!
+ *
+ * @param volume
+ */
+void RadioEngineWrapperObserver::volumeChanged( int volume )
+{
+    // Default implementation does nothing
+    Q_UNUSED( volume );
+}
+
+/*!
+ *
+ * @param muted
+ */
+void RadioEngineWrapperObserver::muteChanged( bool muted )
+{
+    // Default implementation does nothing
+    Q_UNUSED( muted );
+}
+
+/*!
+ *
+ * @param loudspeaker
+ */
+void RadioEngineWrapperObserver::audioRouteChanged( bool loudspeaker )
+{
+    // Default implementation does nothing
+    Q_UNUSED( loudspeaker );
+}
+
+/*!
+ *
+ * @param connected
+ */
+void RadioEngineWrapperObserver::antennaStatusChanged( bool connected )
+{
+    // Default implementation does nothing
+    Q_UNUSED( connected );
+}
+
+/*!
+ *
+ */
+void RadioEngineWrapperObserver::skipPrevious()
+{
+    // Default implementation does nothing
+}
+
+/*!
+ *
+ */
+void RadioEngineWrapperObserver::skipNext()
+{
+    // Default implementation does nothing
+}
+