#ifndef CLIENT_H #define CLIENT_H #include class client { public: client(); virtual ~client(); protected: private: //TODO: client subscriptions should be stored here std::string auth_token; }; #endif // CLIENT_H