aboutsummaryrefslogtreecommitdiffstats
path: root/src/SongPrint.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-08-06 22:10:25 +0200
committerMax Kellermann <max@duempel.org>2015-08-12 08:41:05 +0200
commit7652a2986b0d0ad55b2776685130f1c68d7108c7 (patch)
treeb4d45e60e97757454f1ff8e4dc793a1e7d852c36 /src/SongPrint.hxx
parentb1480167be487d09ff46bb86ad02041fb28acff1 (diff)
downloadmpd-7652a2986b0d0ad55b2776685130f1c68d7108c7.tar.gz
mpd-7652a2986b0d0ad55b2776685130f1c68d7108c7.tar.xz
mpd-7652a2986b0d0ad55b2776685130f1c68d7108c7.zip
client/Response: new Client wrapper class for writing responses
Diffstat (limited to '')
-rw-r--r--src/SongPrint.hxx15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/SongPrint.hxx b/src/SongPrint.hxx
index 5b9a507ac..50be70fa8 100644
--- a/src/SongPrint.hxx
+++ b/src/SongPrint.hxx
@@ -22,18 +22,23 @@
struct LightSong;
class DetachedSong;
-class Client;
+class Response;
+struct Partition;
void
-song_print_info(Client &client, const DetachedSong &song, bool base=false);
+song_print_info(Response &r, Partition &partition,
+ const DetachedSong &song, bool base=false);
void
-song_print_info(Client &client, const LightSong &song, bool base=false);
+song_print_info(Response &r, Partition &partition,
+ const LightSong &song, bool base=false);
void
-song_print_uri(Client &client, const LightSong &song, bool base=false);
+song_print_uri(Response &r, Partition &partition,
+ const LightSong &song, bool base=false);
void
-song_print_uri(Client &client, const DetachedSong &song, bool base=false);
+song_print_uri(Response &r, Partition &partition,
+ const DetachedSong &song, bool base=false);
#endif