mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
18 lines
266 B
C++
Executable File
18 lines
266 B
C++
Executable File
#ifndef CHECKKEY_TH_H
|
|
#define CHECKKEY_TH_H
|
|
|
|
#pragma once
|
|
#include "nesca_3.h"
|
|
#include "resource.h"
|
|
extern int emitIfOK;
|
|
class CheckKey_Th : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
protected:
|
|
void run();
|
|
};
|
|
|
|
extern CheckKey_Th *chKTh;
|
|
#endif // CHECKKEY_TH_H
|