aboutsummaryrefslogtreecommitdiff
path: root/GateNot.h
diff options
context:
space:
mode:
authorUnavailableDev <69792062+UnavailableDev@users.noreply.github.com>2024-06-12 20:06:48 +0200
committerUnavailableDev <69792062+UnavailableDev@users.noreply.github.com>2024-06-12 20:06:48 +0200
commitf1de485461b4cbb5dda4705323b416abec39b574 (patch)
treed8754423e16e87b299fdd747f7490d3e1f756474 /GateNot.h
parent50d3fb09278d57b5a35e15074cc025a62476c5a7 (diff)
parent26a7c785113e4e8343685b33d8ac4aa2023380f3 (diff)
Merge remote-tracking branch 'origin/node'
Diffstat (limited to 'GateNot.h')
-rw-r--r--GateNot.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/GateNot.h b/GateNot.h
new file mode 100644
index 0000000..55fd9ce
--- /dev/null
+++ b/GateNot.h
@@ -0,0 +1,22 @@
+#pragma once
+
+#include "Node.h"
+
+class GateNot : public Node {
+public:
+ GateNot() = default;
+ GateNot(const GateNot * prototype);
+ ~GateNot() = default;
+ virtual GateNot * clone() const;
+
+private:
+ SignalLevel level();
+
+ using Node::Node;
+ constexpr static const char * type = "Not";
+ static GateNot instance;
+
+private:
+ int min_inputs = 1;
+ int max_inputs = 1;
+};