File indexing completed on 2025-01-18 09:29:35
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_BEAST_WEBSOCKET_STREAM_FWD_HPP
0011 #define BOOST_BEAST_WEBSOCKET_STREAM_FWD_HPP
0012
0013 #include <boost/beast/core/detail/config.hpp>
0014
0015 #ifndef BOOST_BEAST_DOXYGEN
0016
0017
0018
0019 namespace boost {
0020 namespace beast {
0021 namespace websocket {
0022
0023 template<
0024 class NextLayer,
0025 bool deflateSupported = true>
0026 class stream;
0027
0028 }
0029 }
0030 }
0031
0032
0033
0034 #endif
0035
0036 #endif