No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

30 líneas
698 B

  1. #ifndef CABLEPARAMETERSDATA_H
  2. #define CABLEPARAMETERSDATA_H
  3. #include <QString>
  4. #include <Connector.h>
  5. class CCableParametersData
  6. {
  7. public:
  8. CCableParametersData();
  9. int ResetData();
  10. int SetCableParams(QString StationName, QString StationCode, QString CableIdentification, QString CableType, QString OperatorName);
  11. int SetCableType(QString InputConnectortype, QString OutputConnectorType);
  12. QString mStationName;
  13. QString mStationCodeName;
  14. QString mCableIdentification; //Cable name
  15. QString mCableType; //permanent or temporary
  16. QString mTestOperatorName;
  17. QString mInputConnectorType;
  18. QString mOutputConnectorType;
  19. };
  20. #endif // CABLEPARAMETERSDATA_H