- #include <string>
- #include "header.hpp"
- cx_cpp_http::header::header(std::string title, std::string content) {
- this->title = title;
- this->content = content;
- }
- std::string cx_cpp_http::header::get_title() {
- return this->title;
- }
- std::string cx_cpp_http::header::get_content() {
- return this->content;
- }
|