1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef ASIO_WRITABLE_PIPE_HPP
- #define ASIO_WRITABLE_PIPE_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include "asio/detail/config.hpp"
- #if defined(ASIO_HAS_PIPE) \
- || defined(GENERATING_DOCUMENTATION)
- #include "asio/basic_writable_pipe.hpp"
- namespace asio {
- typedef basic_writable_pipe<> writable_pipe;
- }
- #endif
-
- #endif
|