25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

27 lines
396 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. int mIOModuleRangeBegin, mIOModuleRangeEnd;
  15. };
  16. #endif // CONNECTOR_H