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