mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
25 lines
463 B
C++
Executable File
25 lines
463 B
C++
Executable File
#ifndef IRCPINGER_TH_H
|
|
#define IRCPINGER_TH_H
|
|
|
|
#pragma once
|
|
#include "nesca_3.h"
|
|
#include "resource.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
|