Kactus2
Kactus2 reference guide
Loading...
Searching...
No Matches
WriteChannel.h
Go to the documentation of this file.
1//-----------------------------------------------------------------------------
2// File: WriteChannel.h
3//-----------------------------------------------------------------------------
4// Project: Kactus2
5// Author: Esko Pekkarinen
6// Date: 05.02.2021
7//
8// Description:
9// <Short description of the class/file contents>
10//-----------------------------------------------------------------------------
11
12#ifndef WRITECHANNEL_H
13#define WRITECHANNEL_H
14
15#include <QString>
16
18{
19public:
20
22 virtual ~WriteChannel() = default;
23
24 virtual void write(QString const& text) = 0;
25
26protected:
27
29 WriteChannel() = default;
30};
31
32#endif // WRITECHANNEL_H
virtual void write(QString const &text)=0
WriteChannel()=default
The constructor.
virtual ~WriteChannel()=default
The destructor.