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 TESTBENCHSETTINGS_H
- #define TESTBENCHSETTINGS_H
- #include <QString>
-
- class CTestBenchSettings
- {
- public:
- CTestBenchSettings();
-
- int LoadSettingFromFile();
- int SaveSettingsToFile();
-
-
- int mPinHoldTime;
- bool mIgnoreVisualInspection;
- QString mIOModuleIPAddress;
- bool mIncludeLogInReport;
- bool mExecSecondPass;
-
-
-
-
- };
-
- #endif // TESTBENCHSETTINGS_H
|