diff options
author | Max Kellermann <max@duempel.org> | 2013-09-05 09:37:54 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-09-05 09:40:55 +0200 |
commit | 8929f88e6d78d538d943e80b66fcf21706e53974 (patch) | |
tree | 01232fd55f40dfa1cded59cb28a79b257ebb19e4 /src/PlaylistQueue.hxx | |
parent | 5348808bf594de927cc64eebae9118d6971343b1 (diff) | |
download | mpd-8929f88e6d78d538d943e80b66fcf21706e53974.tar.gz mpd-8929f88e6d78d538d943e80b66fcf21706e53974.tar.xz mpd-8929f88e6d78d538d943e80b66fcf21706e53974.zip |
PlaylistPlugin: add interface SongEnumerator
Replaces struct playlist_provider.
Diffstat (limited to 'src/PlaylistQueue.hxx')
-rw-r--r-- | src/PlaylistQueue.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PlaylistQueue.hxx b/src/PlaylistQueue.hxx index 5a5cc641d..71768ecb4 100644 --- a/src/PlaylistQueue.hxx +++ b/src/PlaylistQueue.hxx @@ -26,7 +26,7 @@ #include "PlaylistError.hxx" -struct playlist_provider; +class SongEnumerator; struct playlist; struct player_control; @@ -40,7 +40,7 @@ struct player_control; * @param end_index the index of the last song (excluding) */ enum playlist_result -playlist_load_into_queue(const char *uri, struct playlist_provider *source, +playlist_load_into_queue(const char *uri, SongEnumerator &e, unsigned start_index, unsigned end_index, struct playlist *dest, struct player_control *pc, bool secure); |