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_FWD_HPP
0011 #define BOOST_BEAST_HTTP_DYNAMIC_BODY_FWD_HPP
0012
0013 #include <boost/beast/http/basic_dynamic_body_fwd.hpp>
0014
0015 #include <memory>
0016
0017 namespace boost {
0018 namespace beast {
0019
0020 #ifndef BOOST_BEAST_DOXYGEN
0021 template<class Allocator>
0022 class basic_multi_buffer;
0023
0024 using multi_buffer = basic_multi_buffer<std::allocator<char>>;
0025 #endif
0026
0027 namespace http {
0028
0029 #ifndef BOOST_BEAST_DOXYGEN
0030 using dynamic_body = basic_dynamic_body<multi_buffer>;
0031 #endif
0032
0033 }
0034 }
0035 }
0036
0037 #endif