Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

26 lignes
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