/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Response.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mmoussou #include typedef unsigned int uint; namespace webserv { namespace http { class Response : public http::IMessage { public: Response(void); ~Response(void); std::string getProtocol(void) const; uint getStatusCode(void) const; std::string getStatusText(void) const; void setProtocol(std::string const protocol); void setStatusCode(uint const status_code); std::string str(void) const; private: std::string _protocol; uint _status_code; std::string _status_text; }; } // namespace http } // namespace webserv