mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
20 lines
279 B
C++
Executable File
20 lines
279 B
C++
Executable File
#ifndef VERCHECKERTHREAD_H
|
|
#define VERCHECKERTHREAD_H
|
|
|
|
#pragma once
|
|
#include "STh.h"
|
|
#include "resource.h"
|
|
|
|
class VerCheckerThread : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
protected:
|
|
void run();
|
|
};
|
|
|
|
extern VerCheckerThread *vct;
|
|
#endif // VERCHECKERTHREAD_H
|