MeVisLab Toolbox Reference
Connection.h
Go to the documentation of this file.
1// Copyright (c) Fraunhofer MEVIS, Germany. All rights reserved.
2// **InsertLicense** code
3
4#pragma once
5
6
7namespace asio {
8
16 {
17 public:
18
19 virtual ~Connection() = default;
20
21 virtual void suspend() = 0;
22
23 virtual void resume() = 0;
24 };
25
26}
Abstract base class for a connection between two I/O processors.
Definition Connection.h:16
virtual void suspend()=0
virtual void resume()=0
virtual ~Connection()=default