mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
22 lines
438 B
C
22 lines
438 B
C
|
#ifndef ACTIVITYDRAWERTH_HORNET_H
|
||
|
#define ACTIVITYDRAWERTH_HORNET_H
|
||
|
|
||
|
#pragma once
|
||
|
#include "STh.h"
|
||
|
|
||
|
class ActivityDrawerTh_HorNet : public QThread
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public: signals: void sDrawActivityLine(QString);
|
||
|
public: signals: void sDrawGrid();
|
||
|
|
||
|
public:
|
||
|
static void doEmitDrawActivityLine(QString data);
|
||
|
static void doEmitDrawGrid();
|
||
|
protected:
|
||
|
void run();
|
||
|
};
|
||
|
extern ActivityDrawerTh_HorNet *adtHN;
|
||
|
#endif // ACTIVITYDRAWERTH_HORNET_H
|