aboutsummaryrefslogtreecommitdiff
path: root/GateNot.h
diff options
context:
space:
mode:
Diffstat (limited to 'GateNot.h')
-rw-r--r--GateNot.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/GateNot.h b/GateNot.h
index 55fd9ce..2a185f9 100644
--- a/GateNot.h
+++ b/GateNot.h
@@ -4,19 +4,14 @@
class GateNot : public Node {
public:
- GateNot() = default;
+ GateNot();
GateNot(const GateNot * prototype);
- ~GateNot() = default;
+ virtual ~GateNot() = default;
virtual GateNot * clone() const;
-
-private:
SignalLevel level();
+private:
using Node::Node;
- constexpr static const char * type = "Not";
+ constexpr static const char * type = "not";
static GateNot instance;
-
-private:
- int min_inputs = 1;
- int max_inputs = 1;
};