qtinternetradio/ui/inc/irqsonghistoryinfo.h
changeset 17 38bbf2dcd608
equal deleted inserted replaced
16:5723da102db1 17:38bbf2dcd608
       
     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 #ifndef IRQSONGHISTORYINFO_H_
       
    18 #define IRQSONGHISTORYINFO_H_
       
    19 
       
    20 #include <QString>
       
    21  
       
    22 class IRQSongInfo
       
    23 {
       
    24 public:
       
    25   
       
    26     
       
    27     void setSongName(const QString& aName);
       
    28     const QString& getSongName() const;
       
    29     
       
    30     void setArtistName(const QString& aArtist);
       
    31     const QString& getArtistName()const;   
       
    32 
       
    33     void setMusicshopStatus(const QString& aStatus);
       
    34     const QString& getMusicshopStatus()const;
       
    35     
       
    36     
       
    37     void setStationName(const QString& aStationName);
       
    38     const QString& getStationName() const;
       
    39     
       
    40     void setChannelID(const QString& aChannelID);
       
    41     const QString& getChannelID()const;
       
    42     
       
    43     void setAllInfo(const QString& aStationName, const QString& aSongName, const QString& aArtist, const QString& aStatus, const QString& aChannelID);
       
    44     
       
    45 private:
       
    46     
       
    47     QString iSongName;
       
    48     QString iSongArtist;    
       
    49     QString iMusicshopStatus;
       
    50     QString iStationName;
       
    51     QString iChannelID;
       
    52 
       
    53 };
       
    54 #endif // IRQSONGHISTORYINFO_H_