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"
- #include <QBitArray>
- #include "IOModulesInterface.h"
-
-
- class CConnector
- {
- public:
- CConnector();
-
- int GetPinCount();
- virtual int SetConnectorType(CConnectorDefs::eConnectorType type);
- bool IsConnectorDefined();
- int SetIOInterface(CIOModulesInterface *IFHandle);
- CConnectorDefs::eConnectorType GetConnectorType();
-
-
-
- protected:
- unsigned int mPinCount;
- CConnectorDefs::eConnectorType mConnectorType;
-
- int mIOModuleRangeBegin, mIOModuleRangeEnd;
-
- CIOModulesInterface *mIOInterfaceHandle;
-
-
-
- };
-
- #endif // CONNECTOR_H
|