1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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