CableTestBench/Sources/CableTestBench.h
2019-05-01 16:27:59 -04:00

41 lines
665 B
C++

#ifndef OUTILMODBUS_H
#define OUTILMODBUS_H
#include <QObject>
#include "MainWindow.h"
class CMainPage;
class CVisualInspectionPage;
class CCableTestPage;
class CCableTestBench : public QObject
{
Q_OBJECT
public:
explicit CCableTestBench(QObject *parent = 0);
~CCableTestBench();
int Start();
MainWindow *w;
CMainPage *mMainPageHandle;
CVisualInspectionPage *mVisualInspPageHandle;
CCableTestPage *mCableTestPageHandle;
int ExecVisualInspectionRequest();
private:
quint16 DecToBCDWord(const quint16 word);
quint8 DecToBCDByte(const quint8 byte);
signals:
public slots:
};
#endif // OUTILMODBUS_H