You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 line
345 B

  1. #ifndef CONNECTOR_H
  2. #define CONNECTOR_H
  3. #include "CableTestBenchDefs.h"
  4. class CConnector
  5. {
  6. public:
  7. CConnector();
  8. int GetPinCount();
  9. int SetConnectorType(CConnectorDefs::eConnectorType type);
  10. bool IsConnectorDefined();
  11. private:
  12. int mPinCount;
  13. CConnectorDefs::eConnectorType mConnectorType;
  14. };
  15. #endif // CONNECTOR_H