Files
boost_beast/include/boost/beast/http/dynamic_body.hpp

31 lines
743 B
C++
Raw Normal View History

//
2019-02-21 07:00:31 -08:00
// Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com)
//
// 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)
//
2017-07-20 13:40:34 -07:00
// Official repository: https://github.com/boostorg/beast
//
2017-07-20 13:40:34 -07:00
#ifndef BOOST_BEAST_HTTP_DYNAMIC_BODY_HPP
#define BOOST_BEAST_HTTP_DYNAMIC_BODY_HPP
2017-07-20 13:40:34 -07:00
#include <boost/beast/core/multi_buffer.hpp>
#include <boost/beast/http/basic_dynamic_body.hpp>
2017-07-20 13:40:34 -07:00
namespace boost {
namespace beast {
namespace http {
/** A dynamic message body represented by a @ref multi_buffer
2019-03-05 12:05:00 -08:00
Meets the requirements of <em>Body</em>.
*/
using dynamic_body = basic_dynamic_body<multi_buffer>;
} // http
} // beast
2017-07-20 13:40:34 -07:00
} // boost
#endif