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