diff options
Diffstat (limited to 'server/include/client.h')
-rw-r--r-- | server/include/client.h | 4 |
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; }; |