diff options
Diffstat (limited to '')
-rw-r--r-- | src/PlaylistFile.hxx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/PlaylistFile.hxx b/src/PlaylistFile.hxx index f04530bcc..7154b1f84 100644 --- a/src/PlaylistFile.hxx +++ b/src/PlaylistFile.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 @@ -23,8 +23,8 @@ #include <vector> #include <string> -struct Song; -struct PlaylistInfo; +class DetachedSong; +class SongLoader; class PlaylistVector; class Error; @@ -69,10 +69,12 @@ bool spl_remove_index(const char *utf8path, unsigned pos, Error &error); bool -spl_append_song(const char *utf8path, const Song &song, Error &error); +spl_append_song(const char *utf8path, const DetachedSong &song, Error &error); bool -spl_append_uri(const char *file, const char *utf8file, 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); |