header.h 533 B

1234567891011121314151617181920212223242526
  1. //
  2. // header.hpp
  3. // ~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2010 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef EXPERIMENTAL_HTTP_SERVER_HEADER_H
  11. #define EXPERIMENTAL_HTTP_SERVER_HEADER_H
  12. #include <string>
  13. namespace http_server {
  14. struct header
  15. {
  16. std::string name;
  17. std::string value;
  18. };
  19. } // namespace http_server
  20. #endif // EXPERIMENTAL_HTTP_SERVER_HEADER_H