19 lines
788 B
C++
19 lines
788 B
C++
// This file is part of the Boost Network library
|
|
// Based on the Pion Network Library (r421)
|
|
// Copyright Atomic Labs, Inc. 2007-2008
|
|
// See http://cpp-netlib.sourceforge.net for library home page.
|
|
//
|
|
// 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_PROTOCOL_HTTP_TRAITS_HPP
|
|
#define BOOST_NETWORK_PROTOCOL_HTTP_TRAITS_HPP
|
|
|
|
// Convenience header for including different traits implementations.
|
|
#include <boost/network/protocol/http/traits/message_traits.hpp>
|
|
//#include <boost/network/protocol/http/traits/parser_traits.hpp>
|
|
#include <boost/network/protocol/http/traits/connection_keepalive.hpp>
|
|
|
|
#endif // BOOST_NETWORK_PROTOCOL_HTTP_TRAITS_HPP
|