File indexing completed on 2025-09-14 08:27:57
0001
0002
0003
0004
0005
0006
0007
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
0024
0025
0026
0027 using dynamic_body = basic_dynamic_body<multi_buffer>;
0028 #endif
0029
0030 }
0031 }
0032 }
0033
0034 #endif