Boost C++ Libraries Home Libraries People FAQ More

Home | Reference | Tutorial | Examples | Design

http/server/header.hpp

Go to the documentation of this file.
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
Copyright © 2003 - 2006 Christopher M. Kohlhoff

Home | Reference | Tutorial | Examples | Design