25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

23 satır
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