aboutsummaryrefslogtreecommitdiff
path: root/GateNot.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-06-16 10:26:07 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-06-16 10:26:07 +0200
commitfe17bf1e29884902ff4eda519345f2018ca0b6a1 (patch)
treed9c44d436c0e3d2f927b58473e63af5a56701d18 /GateNot.h
parent1fcb7e5f3b2f1ce8663192c62529ce227a046af3 (diff)
check member visibility
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;
};