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ů.
|
- #ifndef CONNECTOR_H
- #define CONNECTOR_H
-
- #include "CableTestBenchDefs.h"
-
- class CConnector
- {
- public:
- CConnector();
-
- int GetPinCount();
- int SetConnectorType(CConnectorDefs::eConnectorType type);
- bool IsConnectorDefined();
-
- private:
- int mPinCount;
- CConnectorDefs::eConnectorType mConnectorType;
-
-
- };
-
- #endif // CONNECTOR_H
|