From db60026a64809f3da128064c6651d38707eb9a1b Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Wed, 23 Jan 2013 18:14:16 +0100 Subject: [PATCH] How about these? --- src/libtomahawk/Collection.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/libtomahawk/Collection.h b/src/libtomahawk/Collection.h index 37c40ca18..88e576512 100644 --- a/src/libtomahawk/Collection.h +++ b/src/libtomahawk/Collection.h @@ -75,6 +75,10 @@ public: virtual QList< Tomahawk::dynplaylist_ptr > autoPlaylists() { return m_autoplaylists.values(); } virtual QList< Tomahawk::dynplaylist_ptr > stations() { return m_stations.values(); } + virtual void artists() = 0; + virtual void albums( const Tomahawk::artist_ptr& artist ) = 0; + virtual void tracks( const Tomahawk::artist_ptr& artist, const Tomahawk::album_ptr& album ) = 0; + const source_ptr& source() const; unsigned int lastmodified() const { return m_lastmodified; }