circuit-logic-simulator/Parts/NotGate.h

16 lines
266 B
C++

#ifndef NOTGATE_H
#define NOTGATE_H
#include "../Part.h"
class NotGate : public Part
{
public:
NotGate(Logic* logic);
QVector<bool> compute(QVector<bool> inputs) override;
QPainterPath symbolPainterPath(QRect limits) override;
};
#endif // NOTGATE_H