forked from kactus2/kactus2dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChannelRelay.cpp
More file actions
30 lines (25 loc) · 970 Bytes
/
ChannelRelay.cpp
File metadata and controls
30 lines (25 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//-----------------------------------------------------------------------------
// File: ChannelRelay.cpp
//-----------------------------------------------------------------------------
// Project: Kactus2
// Author: Esko Pekkarinen
// Date: 05.02.2021
//
// Description:
// <Short description of the class/file contents>
//-----------------------------------------------------------------------------
#include "ChannelRelay.h"
//-----------------------------------------------------------------------------
// Function: ChannelRelay::ChannelRelay()
//-----------------------------------------------------------------------------
ChannelRelay::ChannelRelay(QObject* parent):
QObject(parent)
{
}
//-----------------------------------------------------------------------------
// Function: ChannelRelay::write()
//-----------------------------------------------------------------------------
void ChannelRelay::write(QString const& text)
{
emit data(text);
}