16 lines
239 B
C++
16 lines
239 B
C++
#ifndef INPUTCONNECTOR_H
|
|
#define INPUTCONNECTOR_H
|
|
#include "Connector.h"
|
|
#include <QBitArray>
|
|
|
|
class CInputConnector : public CConnector
|
|
{
|
|
public:
|
|
CInputConnector();
|
|
|
|
QBitArray GetInputPinsStates();
|
|
|
|
};
|
|
|
|
#endif // INPUTCONNECTOR_H
|