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