CableTestBench/Sources/TestBenchSettings.h
2019-05-14 11:47:17 -04:00

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