Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

basic_io_object

Base class for all I/O objects.

template<
    typename IoObjectService>
class basic_io_object
Types

Name

Description

implementation_type

The underlying implementation type of I/O object.

service_type

The type of the service that will be used to provide I/O operations.

Member Functions

Name

Description

get_io_service

Get the io_service associated with the object.

Protected Member Functions

Name

Description

basic_io_object

Construct a basic_io_object.

Move-construct a basic_io_object.

get_implementation

Get the underlying implementation of the I/O object.

get_service

Get the service associated with the I/O object.

operator=

Move-assign a basic_io_object.

~basic_io_object

Protected destructor to prevent deletion through this type.

Protected Data Members

Name

Description

implementation

(Deprecated: Use get_implementation().) The underlying implementation of the I/O object.

service

(Deprecated: Use get_service().) The service associated with the I/O object.

Remarks

All I/O objects are non-copyable. However, when using C++0x, certain I/O objects do support move construction and move assignment.

Requirements

Header: boost/asio/basic_io_object.hpp

Convenience header: boost/asio.hpp


PrevUpHomeNext