You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #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
|