http_header.hpp
Go to the documentation of this file.
1 #ifndef CPP_WEB_SERVER_HTTP_HEADER_HPP
2 #define CPP_WEB_SERVER_HTTP_HEADER_HPP
3 
4 #include <string>
5 
6 namespace async_web_server_cpp
7 {
8 
12 struct HttpHeader
13 {
15 
16  HttpHeader(std::string name, std::string value) : name(name), value(value)
17  {
18  }
19 
20  std::string name;
21  std::string value;
22 };
23 
24 } // namespace async_web_server_cpp
25 
26 #endif
HttpHeader(std::string name, std::string value)
Definition: http_header.hpp:16


async_web_server_cpp
Author(s): Mitchell Wills , Russel Toris
autogenerated on Mon Feb 28 2022 21:54:08