23 lines
345 B
C++
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
|