Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- #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
|