dynamic_body_fwd.hpp 768 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // Copyright (c) 2024 Mohammad Nejati
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // Official repository: https://github.com/boostorg/beast
  8. //
  9. #ifndef BOOST_BEAST_HTTP_DYNAMIC_BODY_FWD_HPP
  10. #define BOOST_BEAST_HTTP_DYNAMIC_BODY_FWD_HPP
  11. #include <boost/beast/http/basic_dynamic_body_fwd.hpp>
  12. #include <memory>
  13. namespace boost {
  14. namespace beast {
  15. #ifndef BOOST_BEAST_DOXYGEN
  16. template<class Allocator>
  17. class basic_multi_buffer;
  18. using multi_buffer = basic_multi_buffer<std::allocator<char>>;
  19. #endif
  20. namespace http {
  21. #ifndef BOOST_BEAST_DOXYGEN
  22. using dynamic_body = basic_dynamic_body<multi_buffer>;
  23. #endif
  24. } // http
  25. } // beast
  26. } // boost
  27. #endif