|
- #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;
-
- int mIOModuleRangeBegin, mIOModuleRangeEnd;
-
-
-
- };
-
- #endif // CONNECTOR_H
|