File indexing completed on 2025-09-17 08:24:15
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_BEAST_HTTP_PARSER_FWD_HPP
0011 #define BOOST_BEAST_HTTP_PARSER_FWD_HPP
0012
0013 #include <memory>
0014
0015 namespace boost {
0016 namespace beast {
0017 namespace http {
0018
0019 #ifndef BOOST_BEAST_DOXYGEN
0020 template<
0021 bool isRequest,
0022 class Body,
0023 class Allocator = std::allocator<char>>
0024 class parser;
0025
0026 template<class Body, class Allocator = std::allocator<char>>
0027 using request_parser = parser<true, Body, Allocator>;
0028
0029 template<class Body, class Allocator = std::allocator<char>>
0030 using response_parser = parser<false, Body, Allocator>;
0031 #endif
0032
0033 }
0034 }
0035 }
0036
0037 #endif