123456789101112131415161718192021222324252627282930313233 |
- #ifndef BOOST_ASIO_STREAMBUF_HPP
- #define BOOST_ASIO_STREAMBUF_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include <boost/asio/detail/push_options.hpp>
- #include <boost/asio/basic_streambuf.hpp>
- namespace boost {
- namespace asio {
- typedef basic_streambuf<> streambuf;
- }
- }
- #include <boost/asio/detail/pop_options.hpp>
- #endif
|