mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
24 lines
480 B
C++
24 lines
480 B
C++
#ifndef DRAWERTH_VOICESCANNER_H
|
|
#define DRAWERTH_VOICESCANNER_H
|
|
|
|
#pragma once
|
|
#include "nesca_3.h"
|
|
|
|
class DrawerTh_VoiceScanner : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
public: signals: void sAddLine();
|
|
public: signals: void sDrawGrid(int factor);
|
|
public: signals: void sDrawTextPlacers();
|
|
public:
|
|
void doEmitAddLine();
|
|
void doEmitDrawGrid(int factor);
|
|
void doEmitDrawTextPlacers();
|
|
protected:
|
|
void run();
|
|
};
|
|
extern DrawerTh_VoiceScanner *vsTh;
|
|
#endif // DRAWERTH_VOICESCANNER_H
|