From fe17bf1e29884902ff4eda519345f2018ca0b6a1 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Sun, 16 Jun 2024 10:26:07 +0200 Subject: check member visibility --- GateNot.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'GateNot.h') 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; }; -- cgit v1.2.3