summaryrefslogtreecommitdiff
path: root/server/include/client.h
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2015-08-16 14:05:27 +0300
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2015-08-16 14:05:27 +0300
commit3627d42af059a52d2095efc783550fe589d68bcb (patch)
tree0ae26f664591260fa4e7754c2af9e4e45419e48a /server/include/client.h
parent04edaab436dae1747270d7d10c0586a2a4c222bf (diff)
server:
some initial work on authentification part client-qt: some initial work on authentification part
Diffstat (limited to 'server/include/client.h')
-rw-r--r--server/include/client.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/server/include/client.h b/server/include/client.h
index 4fe8467..f9daff6 100644
--- a/server/include/client.h
+++ b/server/include/client.h
@@ -6,11 +6,13 @@
class client
{
public:
- client();
+ client(std::string &client_auth_token);
virtual ~client();
protected:
private:
//TODO: client subscriptions should be stored here
+ //TODO: list of timers with direct callbacks to functions for periodic subscription (bost::asio::deadline_timer)
+ //TODO: store sessions ptr list
std::string auth_token;
};