#ifndef __HTTPSession_h__ #define __HTTPSession_h__ #include "Response.h" namespace http { class HTTPSession { public: HTTPSession(std::string sessionId); std::string getSessionId(); private: std::string sessionId; }; } #endif