nesca/msgcheckerthread.h

21 lines
366 B
C
Raw Permalink Normal View History

#pragma once
2015-02-24 14:00:19 +00:00
#ifndef MSGCHECKERTHREAD_H
#define MSGCHECKERTHREAD_H
#include "nesca_3.h"
class MSGCheckerThread : public QThread
{
2015-05-01 15:30:14 +00:00
private: bool msgChkRunnning = false;
2015-02-24 14:00:19 +00:00
Q_OBJECT
public:
static void doEmitionShowNewMsg(QString str);
public: signals: void showNewMsg(QString);
protected:
void run();
};
extern MSGCheckerThread *mct;
#endif // MSGCHECKERTHREAD_H