~ubuntu-branches/ubuntu/lucid/lastfm/lucid

« back to all changes in this revision

Viewing changes to src/libUnicorn/Station.h

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2007-12-31 09:49:54 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071231094954-ix1amvcsj9pk61ya
Tags: 1:1.4.1.57486.dfsg-1ubuntu1
* Merge from Debian unstable (LP: #180254), remaining changes:
  - debian/rules;
    - Added dh_icons
  - Modify Maintainer value to match Debian-Maintainer-Field Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2005 - 2007 by                                          *
 
3
 *      Last.fm Ltd <client@last.fm>                                       *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, write to the                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   51 Franklin Steet, Fifth Floor, Boston, MA  02110-1301, USA.          *
 
19
 ***************************************************************************/
 
20
 
 
21
#ifndef STATION_H
 
22
#define STATION_H
 
23
 
 
24
#include "StationUrl.h"
 
25
#include "UnicornDllExportMacro.h"
 
26
 
 
27
 
 
28
#include <QString>
 
29
#include <QVariant>
 
30
 
 
31
/** 
 
32
 * @author <max@last.fm>
 
33
 */
 
34
class UNICORN_DLLEXPORT Station
 
35
{
 
36
public:
 
37
    Station() {}
 
38
    Station( const StationUrl& u, const QString& n ) :
 
39
        m_name( n ), m_url( u ) {}
 
40
 
 
41
    QString
 
42
    name() const { return m_name.isEmpty() ? m_url : m_name; }
 
43
    
 
44
    StationUrl
 
45
    url() const { return m_url; }
 
46
    
 
47
    void
 
48
    setUrl( const QString& s ) { m_url = StationUrl( s ); }
 
49
    
 
50
    void
 
51
    setName( const QString& s ) { m_name = s; }
 
52
 
 
53
private:
 
54
    QString m_name;
 
55
    StationUrl m_url;
 
56
};
 
57
 
 
58
 
 
59
#endif // STATION_H