client/Response: new Client wrapper class for writing responses

This commit is contained in:
Max Kellermann
2015-08-06 22:10:25 +02:00
parent b1480167be
commit 7652a2986b
49 changed files with 1068 additions and 780 deletions

View File

@@ -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