circuit-logic-simulator/Parts/NorGate.h

16 lines
266 B
C
Raw Permalink Normal View History

2020-03-24 20:18:39 +01:00
#ifndef NORGATE_H
#define NORGATE_H
#include "../Part.h"
class NorGate : public Part
{
public:
NorGate(Logic* logic);
QVector<bool> compute(QVector<bool> inputs) override;
QPainterPath symbolPainterPath(QRect limits) override;
};
#endif // NORGATE_H