CableTestBench/Sources/TestBenchSettings.h
2019-05-13 11:49:37 -04:00

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