123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef BOOST_BEAST_WEBSOCKET_STREAM_FWD_HPP
- #define BOOST_BEAST_WEBSOCKET_STREAM_FWD_HPP
- #include <boost/beast/core/detail/config.hpp>
- #ifndef BOOST_BEAST_DOXYGEN
- namespace boost {
- namespace beast {
- namespace websocket {
- template<
- class NextLayer,
- bool deflateSupported = true>
- class stream;
- }
- }
- }
- #endif
- #endif
|