Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-14 08:27:57

0001 //
0002 // Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com)
0003 //
0004 // Distributed under the Boost Software License, Version 1.0. (See accompanying
0005 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 //
0007 // Official repository: https://github.com/boostorg/beast
0008 //
0009 
0010 #ifndef BOOST_BEAST_HTTP_DYNAMIC_BODY_HPP
0011 #define BOOST_BEAST_HTTP_DYNAMIC_BODY_HPP
0012 
0013 #include <boost/beast/http/dynamic_body_fwd.hpp>
0014 
0015 #include <boost/beast/core/multi_buffer.hpp>
0016 #include <boost/beast/http/basic_dynamic_body.hpp>
0017 
0018 namespace boost {
0019 namespace beast {
0020 namespace http {
0021 
0022 #if BOOST_BEAST_DOXYGEN
0023 /** A dynamic message body represented by a @ref multi_buffer
0024 
0025     Meets the requirements of <em>Body</em>.
0026 */
0027 using dynamic_body = basic_dynamic_body<multi_buffer>;
0028 #endif
0029 
0030 } // http
0031 } // beast
0032 } // boost
0033 
0034 #endif