32 #include <boost/functional/hash.hpp>
62 inline bool operator== (
const AlbumInfo& a1,
const AlbumInfo& a2)
64 return a1.Artist_ == a2.Artist_ &&
65 a1.Album_ == a2.Album_;
70 inline size_t qHash (
const AlbumInfo& info)
73 boost::hash_combine (seed,
qHash (info.Album_));
74 boost::hash_combine (seed,
qHash (info.Artist_));
83 class Q_DECL_EXPORT IAlbumArtProvider
99 virtual QString GetAlbumArtProviderName ()
const = 0;