aboutsummaryrefslogtreecommitdiffstats
path: root/src/PlaylistFile.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-02-03 23:30:34 +0100
committerMax Kellermann <max@duempel.org>2014-02-03 23:50:19 +0100
commitb9c248e7e7a451aa8aa2718323abd02a73d3dab5 (patch)
treee4cf7e376b7e8147b81532fc9b1c396061a0c3a1 /src/PlaylistFile.hxx
parentd533b59ee33f13df854b0adb2588ab03bcaedfff (diff)
downloadmpd-b9c248e7e7a451aa8aa2718323abd02a73d3dab5.tar.gz
mpd-b9c248e7e7a451aa8aa2718323abd02a73d3dab5.tar.xz
mpd-b9c248e7e7a451aa8aa2718323abd02a73d3dab5.zip
PlaylistFile: use class SongLoader
Diffstat (limited to '')
-rw-r--r--src/PlaylistFile.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/PlaylistFile.hxx b/src/PlaylistFile.hxx
index 75aba71d4..7154b1f84 100644
--- a/src/PlaylistFile.hxx
+++ b/src/PlaylistFile.hxx
@@ -24,6 +24,7 @@
#include <string>
class DetachedSong;
+class SongLoader;
class PlaylistVector;
class Error;
@@ -71,7 +72,9 @@ bool
spl_append_song(const char *utf8path, const DetachedSong &song, Error &error);
bool
-spl_append_uri(const char *path_utf8, const char *uri_utf8, Error &error);
+spl_append_uri(const char *path_utf8,
+ const SongLoader &loader, const char *uri_utf8,
+ Error &error);
bool
spl_rename(const char *utf8from, const char *utf8to, Error &error);