nesca/msgcheckerthread.h

21 lines
351 B
C
Raw Normal View History

2014-09-07 18:54:46 +00:00
#ifndef MSGCHECKERTHREAD_H
#define MSGCHECKERTHREAD_H
#pragma once
#include "nesca_3.h"
#include "resource.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