// Copyright (c) Glyn Matthews 2009. // Copyright 2013 Google, Inc. // Copyright 2013 Dean Michael Berris // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_NETWORK_TRAITS_HEADERS_CONTAINER_INC # define BOOST_NETWORK_TRAITS_HEADERS_CONTAINER_INC # include # include # include namespace boost { namespace network { namespace impl { template struct headers_container_impl { typedef std::multimap< typename string::type, typename string::type > type; }; } // namespace impl template struct headers_container : impl::headers_container_impl {}; } // namespace network } // namespace boost #endif // __BOOST_NETWORK_TRAITS_HEADERS_CONTAINER_INC__