mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
24 lines
417 B
C
24 lines
417 B
C
|
#ifndef IRCPINGER_TH_H
|
||
|
#define IRCPINGER_TH_H
|
||
|
|
||
|
#pragma once
|
||
|
#include "nesca_3.h"
|
||
|
extern int iWantToConnect;
|
||
|
|
||
|
class IRCPinger_Th : public QThread
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
static void doEmitChangeRedIRCData(QString str);
|
||
|
static void doEmitRestartIRC();
|
||
|
|
||
|
public: signals: void changeRedIRCData(QString);
|
||
|
public: signals: void RestartIRC();
|
||
|
|
||
|
protected:
|
||
|
void run();
|
||
|
};
|
||
|
extern IRCPinger_Th *ircPTh;
|
||
|
#endif // IRCPINGER_TH_H
|