aboutsummaryrefslogtreecommitdiffstats
path: root/src/MemorySongEnumerator.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/MemorySongEnumerator.hxx')
-rw-r--r--src/MemorySongEnumerator.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/MemorySongEnumerator.hxx b/src/MemorySongEnumerator.hxx
index 46086a064..e87a4f6dd 100644
--- a/src/MemorySongEnumerator.hxx
+++ b/src/MemorySongEnumerator.hxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2013 The Music Player Daemon Project
+ * Copyright (C) 2003-2014 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -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