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