您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

26 行
383 B

  1. #ifndef TESTBENCHSETTINGS_H
  2. #define TESTBENCHSETTINGS_H
  3. #include <QString>
  4. class CTestBenchSettings
  5. {
  6. public:
  7. CTestBenchSettings();
  8. int LoadSettingFromFile();
  9. int SaveSettingsToFile();
  10. int mPinHoldTime;
  11. bool mIgnoreVisualInspection;
  12. QString mIOModuleIPAddress;
  13. bool mIncludeLogInReport;
  14. bool mExecSecondPass;
  15. };
  16. #endif // TESTBENCHSETTINGS_H