CableTestBench/Sources/Connector.h
2019-05-02 16:10:58 -04:00

23 lines
345 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;
};
#endif // CONNECTOR_H