CableTestBench/Sources/Connector.h
2019-05-03 13:46:54 -04:00

27 lines
396 B
C++

#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