Boost C++ Libraries/Boost.Asio
Boost.Asio 색인 - windows::basic_stream_handle::basic_stream_handle
까마귀75
2021. 1. 12. 11:32
728x90
반응형
windows::basic_stream_handle::basic_stream_handle
스트림 핸들을 열지않고 생성하는 생성자(constructor)
explicit basic_stream_handle( const executor_type & ex);
template< typename ExecutionContext> explicit basic_stream_handle( ExecutionContext & context, typename enable_if< is_convertible< ExecutionContext &, execution_context & >::value, basic_stream_handle >::type * = 0);
주어진 기본(native) 핸들로 스트림 핸들을 생성하는 생성자(constructor)
basic_stream_handle( const executor_type & ex, const native_handle_type & handle);
template< typename ExecutionContext> basic_stream_handle( ExecutionContext & context, const native_handle_type & handle, typename enable_if< is_convertible< ExecutionContext &, execution_context & >::value >::type * = 0);
다른 핸들로 스트림 핸들을 이동 생성하는 이동-생성자(move constructor)
basic_stream_handle( basic_stream_handle && other);
728x90
반응형