00001 // 00002 // header.hpp 00003 // ~~~~~~~~~~ 00004 // 00005 // Copyright (c) 2003-2011 Christopher M. Kohlhoff (chris at kohlhoff dot com) 00006 // 00007 // Distributed under the Boost Software License, Version 1.0. (See accompanying 00008 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 00009 // 00010 00011 #ifndef HTTP_SERVER3_HEADER_H 00012 #define HTTP_SERVER3_HEADER_H 00013 00014 #include <string> 00015 00016 namespace ros_http_video_streamer 00017 { 00018 00019 struct header 00020 { 00021 std::string name; 00022 std::string value; 00023 }; 00024 00025 } // ros_http_video_streamer 00026 00027 #endif // HTTP_SERVER3_HEADER_HPP