aboutsummaryrefslogtreecommitdiffstats
path: root/src/MemorySongEnumerator.hxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/MemorySongEnumerator.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/MemorySongEnumerator.hxx b/src/MemorySongEnumerator.hxx
index 46086a064..085e16bc6 100644
--- a/src/MemorySongEnumerator.hxx
+++ b/src/MemorySongEnumerator.hxx
@@ -21,18 +21,18 @@
#define MPD_MEMORY_PLAYLIST_PROVIDER_HXX
#include "SongEnumerator.hxx"
-#include "SongPointer.hxx"
+#include "DetachedSong.hxx"
#include <forward_list>
class MemorySongEnumerator final : public SongEnumerator {
- std::forward_list<SongPointer> songs;
+ std::forward_list<DetachedSong> songs;
public:
- MemorySongEnumerator(std::forward_list<SongPointer> &&_songs)
+ MemorySongEnumerator(std::forward_list<DetachedSong> &&_songs)
:songs(std::move(_songs)) {}
- virtual Song *NextSong() override;
+ virtual DetachedSong *NextSong() override;
};
#endif