26 lines
383 B
C++
26 lines
383 B
C++
#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
|