aboutsummaryrefslogtreecommitdiff
path: root/GateNot.h
diff options
context:
space:
mode:
Diffstat (limited to 'GateNot.h')
-rw-r--r--GateNot.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/GateNot.h b/GateNot.h
index 2a185f9..0f79a0d 100644
--- a/GateNot.h
+++ b/GateNot.h
@@ -3,15 +3,18 @@
#include "Node.h"
class GateNot : public Node {
+ using Node::Node;
+
public:
GateNot();
- GateNot(const GateNot * prototype);
virtual ~GateNot() = default;
virtual GateNot * clone() const;
+
+public:
SignalLevel level();
private:
- using Node::Node;
+ GateNot(const GateNot * prototype);
constexpr static const char * type = "not";
static GateNot instance;
};