#ifndef CLIENT_H #define CLIENT_H #include class client { public: 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; }; #endif // CLIENT_H