mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
21 lines
310 B
C++
Executable File
21 lines
310 B
C++
Executable File
#ifndef IRC_NMBLINKER_H
|
|
#define IRC_NMBLINKER_H
|
|
|
|
#include "nesca_3.h"
|
|
|
|
class IRC_NMBlinker : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static void doEmitBlinkMessage();
|
|
|
|
public: signals: void sBlinkMessage();
|
|
|
|
protected:
|
|
void run();
|
|
};
|
|
extern IRC_NMBlinker *irc_nmb;
|
|
|
|
#endif // IRC_NMBLINKER_H
|