Boost C++ Libraries/Boost.Asio

Boost.Asio 색인 - basic_serial_port::basic_serial_port

까마귀75 2021. 1. 11. 15:57
728x90
반응형

basic_serial_port::basic_serial_port

basic_serial_port를 열지 않고 생성하는 생성자(constructor)

[1 / 9 오버로드]

explicit basic_serial_port(
    const executor_type & ex);

[basic_serial_port]

 

[2 / 9 오버로드]

template<
    typename ExecutionContext>
explicit basic_serial_port(
    ExecutionContext & context,
    typename enable_if< is_convertible< ExecutionContext &, execution_context & >::value, basic_serial_port >::type *  = 0);

[basic_serial_port]


basic_serial_port를 열어서 생성하는 생성자(constructor)

[3 / 9 오버로드]

basic_serial_port(
    const executor_type & ex,
    const char * device);

[basic_serial_port]

 

[4 / 9 오버로드]

template<
    typename ExecutionContext>
basic_serial_port(
    ExecutionContext & context,
    const char * device,
    typename enable_if< is_convertible< ExecutionContext &, execution_context & >::value >::type *  = 0);

[basic_serial_port]

[5 / 9 오버로드]

basic_serial_port(
    const executor_type & ex,
    const std::string & device);

[basic_serial_port]

 

[6 / 9 오버로드]

template<
    typename ExecutionContext>
basic_serial_port(
    ExecutionContext & context,
    const std::string & device,
    typename enable_if< is_convertible< ExecutionContext &, execution_context & >::value >::type *  = 0);

[basic_serial_port]


basic_serial_port를 주어진 기본 직렬 포트를 사용하여 생성하는 생성자(constructor)

[7 / 9 오버로드]

basic_serial_port(
    const executor_type & ex,
    const native_handle_type & native_serial_port);

[basic_serial_port]

 

[8 / 9 오버로드]

template<
    typename ExecutionContext>
basic_serial_port(
    ExecutionContext & context,
    const native_handle_type & native_serial_port,
    typename enable_if< is_convertible< ExecutionContext &, execution_context & >::value >::type *  = 0);

[basic_serial_port]


다른 basic_serial_port를 사용하여 basic_serial_port를 이동 생성하는 이동-생성자(move constructor)

[9 / 9 오버로드]

basic_serial_port(
    basic_serial_port && other);

[basic_serial_port]


Boost.Asio 홈

728x90
반응형