circuit-logic-simulator/Parts/AndGate.h

16 lines
266 B
C
Raw Normal View History

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