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

 Processor ()=default
 
 Processor (const Processor &)=default
 
Processoroperator= (const Processor &)=default
 
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() [1/2]

asio::Processor::Processor ( )
default

◆ Processor() [2/2]

asio::Processor::Processor ( const Processor )
default

◆ ~Processor()

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

Member Function Documentation

◆ operator=()

Processor & asio::Processor::operator= ( const Processor )
default

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