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