DigitalCircuit/include/components/NOTgate.hpp
2020-12-02 21:18:53 +01:00

14 lines
263 B
C++

#pragma once
#include <QWidget.h>
#include "../Component.hpp"
class NOTGate : public Component
{
public:
NOTGate(QWidget* parent) : Component(parent, ":/components/not.png") { type = "not"; }
bool Action() override {
return !connections[0]->Action();
}
};