http_header.hpp
Go to the documentation of this file.
00001 #ifndef CPP_WEB_SERVER_HTTP_HEADER_HPP
00002 #define CPP_WEB_SERVER_HTTP_HEADER_HPP
00003 
00004 #include <string>
00005 
00006 namespace async_web_server_cpp
00007 {
00008 
00012 struct HttpHeader
00013 {
00014   HttpHeader()
00015   {
00016   }
00017 
00018   HttpHeader(std::string name, std::string value) : name(name), value(value)
00019   {
00020   }
00021 
00022   std::string name;
00023   std::string value;
00024 };
00025 
00026 }
00027 
00028 #endif


async_web_server_cpp
Author(s): Mitchell Wills
autogenerated on Thu Aug 27 2015 12:27:39