circuit-logic-simulator/Parts/XorGate.h

16 lines
266 B
C
Raw Normal View History

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