Init commit

This commit is contained in:
semenov
2024-08-14 10:02:09 +03:00
commit d763a35353
41 changed files with 2051 additions and 0 deletions

24
Core/nonblockedinput.h Normal file
View File

@@ -0,0 +1,24 @@
#ifndef NONBLOCKEDINPUT_H
#define NONBLOCKEDINPUT_H
#include <QTextStream>
#include <QDebug>
#include <QThread>
class NonBlockedInput : public QObject
{
Q_OBJECT
public:
explicit NonBlockedInput(QObject* parent = nullptr);
private:
QThread thread;
signals:
void LineIsRead(QString line);
private slots:
void ReadLine();
};
#endif // NONBLOCKEDINPUT_H