1// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5#ifndef STDINREADLOOP_H
6#define STDINREADLOOP_H
7
8#include <QThread>
9
10class StdinReadLoopPrivate;
11class StdinReadLoop : public QThread
12{
13 Q_OBJECT
14 StdinReadLoopPrivate *const d;
15public:
16 StdinReadLoop();
17 virtual ~StdinReadLoop();
18 virtual void run();
19Q_SIGNALS:
20 void readedLine(const QByteArray &);
21};
22
23#endif // STDINREADLOOP_H
24