Files
Rennbahn/hardwaresetup.h
2014-09-05 14:12:37 +02:00

27 lines
403 B
C++

#ifndef HARDWARESETUP_H
#define HARDWARESETUP_H
#include <QtCore>
class HardwareSetup : public QThread
{
Q_OBJECT
protected:
void run();
private:
bool shellBefore;
bool deaBefore;
bool getShell();
bool getDea();
int* findBit(int *array, int zahl);
public:
~HardwareSetup();
HardwareSetup();
signals:
void Shell();
void Dea();
};
#endif // HARDWARESETUP_H