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.
 
 
 
 

25 linhas
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