23 lines
283 B
C++
23 lines
283 B
C++
#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
|