| 12345678910111213141516171819202122 |
- #ifndef CX_CPP_HTTP_HEADER_HPP_INCLUDED
- #define CX_CPP_HTTP_HEADER_HPP_INCLUDED
- #include <string>
- 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
|