File indexing completed on 2025-09-16 08:29:32
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_BEAST_HTTP_STRING_BODY_FWD_HPP
0011 #define BOOST_BEAST_HTTP_STRING_BODY_FWD_HPP
0012
0013 #include <memory>
0014 #include <string>
0015
0016 namespace boost {
0017 namespace beast {
0018 namespace http {
0019
0020 #ifndef BOOST_BEAST_DOXYGEN
0021 template<
0022 class CharT,
0023 class Traits = std::char_traits<CharT>,
0024 class Allocator = std::allocator<CharT>>
0025 struct basic_string_body;
0026
0027 using string_body = basic_string_body<char>;
0028 #endif
0029
0030 }
0031 }
0032 }
0033
0034 #endif