Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

27 lignes
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