Patch by first time Amarok contributor Casey Link ( Welcome! )
[amarok.git] / src / servicebrowser / mp3tunes / Mp3tunesMeta.cpp
blobf9f157c52c7fce5bfe06e9494c65787838d313e2
1 /***************************************************************************
2 * Copyright (c) 2007 Casey Link <unnamedrambler@gmail.com> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
20 #include "debug.h"
21 #include "Mp3tunesMeta.h"
22 using namespace Meta;
24 //// Mp3TunesAlbum ////
26 Mp3TunesAlbum::Mp3TunesAlbum( const QString &name )
27 : ServiceAlbumWithCover( name )
31 Mp3TunesAlbum::Mp3TunesAlbum(const QStringList & resultRow)
32 : ServiceAlbumWithCover( resultRow )
36 Mp3TunesAlbum::~ Mp3TunesAlbum()
40 void Mp3TunesAlbum::setCoverUrl( const QString &coverURL )
42 m_coverURL = coverURL;
45 QString Mp3TunesAlbum::coverUrl( ) const
47 return m_coverURL;