1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#pragma once #include <sstream> #include <string> enum class ResponseCode { OK = 200 }; class HttpResponse { public: HttpResponse(ResponseCode); void add_header(std::string header); std::string to_string() const; private: std::stringstream m_string_stream; };