mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
23 lines
368 B
C++
Executable File
23 lines
368 B
C++
Executable File
#ifndef DRAWERTH_QOSSCANNER_H
|
|
#define DRAWERTH_QOSSCANNER_H
|
|
|
|
#pragma once
|
|
#include "nesca_3.h"
|
|
#include "resource.h"
|
|
|
|
class DrawerTh_QoSScanner : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static void doEmitionAddLine();
|
|
|
|
public: signals: void sAddLine();
|
|
|
|
protected:
|
|
void run();
|
|
};
|
|
|
|
extern DrawerTh_QoSScanner *dtQoS;
|
|
#endif // DRAWERTH_QOSSCANNER_H
|