/* * Copyright (c) 2017-2023 zhllxt * * author : zhllxt * email : 37792738@qq.com * * Distributed under the Boost Software License, Version 1.0. (See accompanying * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ #ifndef __ASIO2_TCP_STREAM_HPP__ #define __ASIO2_TCP_STREAM_HPP__ #if defined(_MSC_VER) && (_MSC_VER >= 1200) #pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include namespace asio2 { /** A TCP/IP stream socket with timeouts and a polymorphic executor. @see basic_stream */ template using tcp_stream = basic_stream; } #endif // !__ASIO2_TCP_STREAM_HPP__