radioapp/radiouiengine/src/radiomonitorservice_win32.cpp
changeset 19 afea38384506
parent 16 f54ebcfc1b80
--- a/radioapp/radiouiengine/src/radiomonitorservice_win32.cpp	Mon May 03 12:31:41 2010 +0300
+++ b/radioapp/radiouiengine/src/radiomonitorservice_win32.cpp	Fri May 14 15:52:32 2010 +0300
@@ -17,14 +17,14 @@
 
 // User includes
 #include "radiomonitorservice_win32.h"
-#include "radiouiengine.h"
+#include "radiouiengine_p.h"
 #include "radioservicedef.h"
 
 /*!
  *
  */
-RadioMonitorService::RadioMonitorService( RadioUiEngine& engine ) :
-    QObject( &engine ),
+RadioMonitorService::RadioMonitorService( RadioUiEnginePrivate& engine ) :
+    QObject(),
     mUiEngine( engine )
 {
 }
@@ -39,65 +39,8 @@
 /*!
  *
  */
-void RadioMonitorService::notifyFavoriteCount( const int favoriteCount )
-{
-    Q_UNUSED( favoriteCount )
-}
-
-/*!
- *
- */
-void RadioMonitorService::notifyAntennaStatus( bool connected )
-{
-    Q_UNUSED( connected )
-}
-
-/*!
- *
- */
-void RadioMonitorService::notifyRadioStatus( RadioStatus::Status radioStatus )
-{
-    Q_UNUSED( radioStatus )
-}
-
-/*!
- *
- */
-void RadioMonitorService::notifyFrequency( const uint frequency )
+void RadioMonitorService::init()
 {
-    Q_UNUSED( frequency )
-}
-
-/*!
- *
- */
-void RadioMonitorService::notifyName( const QString& name )
-{
-    Q_UNUSED( name )
-}
-
-/*!
- *
- */
-void RadioMonitorService::notifyGenre( const QString& genre )
-{
-    Q_UNUSED( genre )
-}
-
-/*!
- *
- */
-void RadioMonitorService::notifyRadioText( const QString& radioText )
-{
-    Q_UNUSED( radioText )
-}
-
-/*!
- *
- */
-void RadioMonitorService::notifyHomePage( const QString& homePage )
-{
-    Q_UNUSED( homePage )
 }
 
 /*!