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.
 
 
 
 

25 regels
357 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. };
  15. #endif // TESTBENCHSETTINGS_H