/**************************************************************************************** * Copyright (c) 2010 Leo Franchi * * * * This program is free software; you can redistribute it and/or modify it under * * the terms of the GNU General Public License as published by the Free Software * * Foundation; either version 2 of the License, or (at your option) any later * * version. * * * * This program is distributed in the hope that it will be useful, but WITHOUT ANY * * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A * * PARTICULAR PURPOSE. See the GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License along with * * this program. If not, see . * ****************************************************************************************/ #ifndef ECHONEST_ARTIST_P_H #define ECHONEST_ARTIST_P_H #include "Song.h" #include "ArtistTypes.h" #include #include #include namespace Echonest { class Artist; } class ArtistData : public QSharedData { public: ArtistData() : familiarity( -1 ), hotttnesss( -1 ) {} ArtistData( const QByteArray& id, const QString& name ) : id( id ), name( name ), familiarity( -1 ), hotttnesss( -1 ) {} ArtistData(const ArtistData& other) { id = other.id; name = other.name; } // The following exist in all valid Artist objects QByteArray id; QString name; //The following are populated on demand, and may not exist Echonest::AudioList audio; Echonest::BiographyList biographies; Echonest::BlogList blogs; qreal familiarity; qreal hotttnesss; Echonest::ArtistImageList images; Echonest::NewsList news; Echonest::ReviewList reviews; Echonest::SongList songs; QVector similar; Echonest::TermList terms; Echonest::VideoList videos; QUrl lastfm_url; QUrl aolmusic_url; QUrl myspace_url; QUrl amazon_url; QUrl itunes_url; QUrl mb_url; }; #endif