#ifndef CX_CPP_HTTP_HEADER_HPP_INCLUDED #define CX_CPP_HTTP_HEADER_HPP_INCLUDED #include namespace cx_cpp_http { class header { public: header(std::string, std::string); std::string get_title(); std::string get_content(); private: std::string title; std::string content; }; } #endif