Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

posix::basic_stream_descriptor::basic_stream_descriptor

Construct a stream descriptor without opening it.

explicit basic_stream_descriptor(
    const executor_type & ex);
  » more...

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

Construct a stream descriptor on an existing native descriptor.

basic_stream_descriptor(
    const executor_type & ex,
    const native_handle_type & native_descriptor);
  » more...

template<
    typename ExecutionContext>
basic_stream_descriptor(
    ExecutionContext & context,
    const native_handle_type & native_descriptor,
    typename enable_if< is_convertible< ExecutionContext &, execution_context & >::value >::type *  = 0);
  » more...

Move-construct a stream descriptor from another.

basic_stream_descriptor(
    basic_stream_descriptor && other);
  » more...

PrevUpHomeNext