aboutsummaryrefslogtreecommitdiffstats
path: root/src/TimePrint.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/TimePrint.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/TimePrint.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TimePrint.hxx b/src/TimePrint.hxx
index 8f1f21050..6ded9cca0 100644
--- a/src/TimePrint.hxx
+++ b/src/TimePrint.hxx
@@ -22,12 +22,12 @@
#include <time.h>
-class Client;
+class Response;
/**
* Write a line with a time stamp to the client.
*/
void
-time_print(Client &client, const char *name, time_t t);
+time_print(Response &r, const char *name, time_t t);
#endif