Examples |
00001 #ifndef HTTP_HEADER_HPP 00002 #define HTTP_HEADER_HPP 00003 00004 #include <string> 00005 00006 namespace http { 00007 namespace server { 00008 00009 struct header 00010 { 00011 std::string name; 00012 std::string value; 00013 }; 00014 00015 } // namespace server 00016 } // namespace http 00017 00018 #endif // HTTP_HEADER_HPP