mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
20 lines
329 B
C
20 lines
329 B
C
|
#ifndef MSGCHECKERTHREAD_H
|
||
|
#define MSGCHECKERTHREAD_H
|
||
|
|
||
|
#pragma once
|
||
|
#include "nesca_3.h"
|
||
|
|
||
|
class MSGCheckerThread : public QThread
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
static void doEmitionShowNewMsg(QString str);
|
||
|
public: signals: void showNewMsg(QString);
|
||
|
|
||
|
protected:
|
||
|
void run();
|
||
|
};
|
||
|
extern MSGCheckerThread *mct;
|
||
|
|
||
|
#endif // MSGCHECKERTHREAD_H
|