MeVisLab Toolbox Reference
asio::Processor Class Reference

Base class for all asynchronous I/O interfaces. More...

#include <Processor.h>

Inheritance diagram for asio::Processor:
asio::ExecutableType< ParameterPack< Args... > > asio::ObservableType< ParameterPack< Args... > > asio::ProcessableType< Result, ParameterPack< Args... > >

Public Member Functions

virtual ~Processor ()=default
 

Detailed Description

Base class for all asynchronous I/O interfaces.

Although this class does not declare or define any functionality (except virtual destruction), it is important in order to have a common base for transport of processors between APIs. Usually templated channel interfaces inherit asio::Processor and final implementations make use of multiple inheritance of these for all types they support. To avoid the dreaded diamond problem (multiple instances of the root class object), virtual inheritance of asio::Processor is recommended unless you know what you are doing.

Definition at line 30 of file Processor.h.

Constructor & Destructor Documentation

◆ ~Processor()

virtual asio::Processor::~Processor ( )
virtualdefault

The documentation for this class was generated from the following file: