string_body_fwd.hpp 708 B

1234567891011121314151617181920212223242526272829303132333435
  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_STRING_BODY_FWD_HPP
  10. #define BOOST_BEAST_HTTP_STRING_BODY_FWD_HPP
  11. #include <memory>
  12. #include <string>
  13. namespace boost {
  14. namespace beast {
  15. namespace http {
  16. #ifndef BOOST_BEAST_DOXYGEN
  17. template<
  18. class CharT,
  19. class Traits = std::char_traits<CharT>,
  20. class Allocator = std::allocator<CharT>>
  21. struct basic_string_body;
  22. using string_body = basic_string_body<char>;
  23. #endif
  24. } // http
  25. } // beast
  26. } // boost
  27. #endif