include
async_web_server_cpp
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
{
14
HttpHeader
() {}
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
async_web_server_cpp::HttpHeader::HttpHeader
HttpHeader()
Definition:
http_header.hpp:14
async_web_server_cpp::HttpHeader
Definition:
http_header.hpp:12
async_web_server_cpp
Definition:
http_connection.hpp:14
async_web_server_cpp::HttpHeader::value
std::string value
Definition:
http_header.hpp:21
async_web_server_cpp::HttpHeader::HttpHeader
HttpHeader(std::string name, std::string value)
Definition:
http_header.hpp:16
async_web_server_cpp::HttpHeader::name
std::string name
Definition:
http_header.hpp:20
async_web_server_cpp
Author(s): Mitchell Wills
, Russel Toris
autogenerated on Tue Mar 1 2022 23:49:06