123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef ASIO_EXPERIMENTAL_APPEND_HPP
- #define ASIO_EXPERIMENTAL_APPEND_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include "asio/detail/config.hpp"
- #include "asio/append.hpp"
- #include "asio/detail/push_options.hpp"
- namespace asio {
- namespace experimental {
- #if !defined(ASIO_NO_DEPRECATED)
- using asio::append_t;
- using asio::append;
- #endif
- }
- }
- #include "asio/detail/pop_options.hpp"
- #endif
|