aboutsummaryrefslogtreecommitdiff
path: root/src/MessageCommands.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-03 17:27:26 +0100
committerMax Kellermann <max@duempel.org>2013-01-03 17:36:28 +0100
commit7a982169c9dc3a673e922e7f3b9b73368cef0aae (patch)
tree7b9b28287d7ae934c0e75bd7f3b5f317ad7d2cac /src/MessageCommands.hxx
parentf2510d60fad1c5811fba3d253ef1c8dabb712304 (diff)
Client: rename the struct client to class Client
Diffstat (limited to 'src/MessageCommands.hxx')
-rw-r--r--src/MessageCommands.hxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/MessageCommands.hxx b/src/MessageCommands.hxx
index 111c06ff..b10f3d8e 100644
--- a/src/MessageCommands.hxx
+++ b/src/MessageCommands.hxx
@@ -22,19 +22,21 @@
#include "command.h"
+class Client;
+
enum command_return
-handle_subscribe(struct client *client, int argc, char *argv[]);
+handle_subscribe(Client *client, int argc, char *argv[]);
enum command_return
-handle_unsubscribe(struct client *client, int argc, char *argv[]);
+handle_unsubscribe(Client *client, int argc, char *argv[]);
enum command_return
-handle_channels(struct client *client, int argc, char *argv[]);
+handle_channels(Client *client, int argc, char *argv[]);
enum command_return
-handle_read_messages(struct client *client, int argc, char *argv[]);
+handle_read_messages(Client *client, int argc, char *argv[]);
enum command_return
-handle_send_message(struct client *client, int argc, char *argv[]);
+handle_send_message(Client *client, int argc, char *argv[]);
#endif