radioapp/radiouiengine/src/radiomonitorservice_win32.cpp
changeset 14 63aabac4416d
child 16 f54ebcfc1b80
equal deleted inserted replaced
13:46974bebc798 14:63aabac4416d
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 // User includes
       
    19 #include "radiomonitorservice_win32.h"
       
    20 #include "radiouiengine.h"
       
    21 #include "radioserviceconst.h"
       
    22 
       
    23 /*!
       
    24  *
       
    25  */
       
    26 RadioMonitorService::RadioMonitorService( RadioUiEngine& engine ) :
       
    27     QObject( &engine ),
       
    28     mUiEngine( engine )
       
    29 {
       
    30 }
       
    31 
       
    32 /*!
       
    33  *
       
    34  */
       
    35 RadioMonitorService::~RadioMonitorService()
       
    36 {
       
    37 }
       
    38 
       
    39 /*!
       
    40  *
       
    41  */
       
    42 void RadioMonitorService::notifyName( const QString& name )
       
    43 {
       
    44     Q_UNUSED( name )
       
    45 }
       
    46 
       
    47 /*!
       
    48  *
       
    49  */
       
    50 void RadioMonitorService::notifyGenre( const QString& genre )
       
    51 {
       
    52     Q_UNUSED( genre )
       
    53 }
       
    54 
       
    55 /*!
       
    56  *
       
    57  */
       
    58 void RadioMonitorService::notifyRadioText( const QString& radioText )
       
    59 {
       
    60     Q_UNUSED( radioText )
       
    61 }
       
    62 
       
    63 /*!
       
    64  *
       
    65  */
       
    66 void RadioMonitorService::notifyHomepage( const QString& homepage )
       
    67 {
       
    68     Q_UNUSED( homepage )
       
    69 }
       
    70 
       
    71 /*!
       
    72  *
       
    73  */
       
    74 void RadioMonitorService::notifySong( const QString& song )
       
    75 {
       
    76     Q_UNUSED( song )
       
    77 }