Main Page
Namespaces
Namespace List
Namespace Members
All
a
b
c
f
h
i
m
n
o
s
t
u
w
Functions
Variables
a
b
c
f
i
m
n
o
s
u
Typedefs
Classes
Class List
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Functions
a
b
c
f
g
h
i
o
p
r
s
t
w
~
Variables
a
b
c
d
f
h
i
k
l
m
n
p
q
r
s
t
u
v
w
Typedefs
Enumerations
Enumerator
a
b
c
e
f
h
i
l
m
n
o
s
t
u
Related Functions
Files
File List
File Members
All
Functions
Variables
Macros
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