30 lines
698 B
C++
30 lines
698 B
C++
#ifndef CABLEPARAMETERSDATA_H
|
|
#define CABLEPARAMETERSDATA_H
|
|
|
|
#include <QString>
|
|
#include <Connector.h>
|
|
|
|
class CCableParametersData
|
|
{
|
|
public:
|
|
CCableParametersData();
|
|
|
|
int ResetData();
|
|
|
|
int SetCableParams(QString StationName, QString StationCode, QString CableIdentification, QString CableType, QString OperatorName);
|
|
int SetCableType(QString InputConnectortype, QString OutputConnectorType);
|
|
|
|
|
|
|
|
QString mStationName;
|
|
QString mStationCodeName;
|
|
QString mCableIdentification; //Cable name
|
|
QString mCableType; //permanent or temporary
|
|
QString mTestOperatorName;
|
|
|
|
QString mInputConnectorType;
|
|
QString mOutputConnectorType;
|
|
};
|
|
|
|
#endif // CABLEPARAMETERSDATA_H
|