summaryrefslogtreecommitdiff
path: root/server/include
diff options
context:
space:
mode:
Diffstat (limited to 'server/include')
-rw-r--r--server/include/client.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/server/include/client.h b/server/include/client.h
new file mode 100644
index 0000000..4fe8467
--- /dev/null
+++ b/server/include/client.h
@@ -0,0 +1,17 @@
+#ifndef CLIENT_H
+#define CLIENT_H
+
+#include <string>
+
+class client
+{
+ public:
+ client();
+ virtual ~client();
+ protected:
+ private:
+ //TODO: client subscriptions should be stored here
+ std::string auth_token;
+};
+
+#endif // CLIENT_H