Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

23 řádky
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