diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-16 10:26:07 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-16 10:26:07 +0200 |
commit | fe17bf1e29884902ff4eda519345f2018ca0b6a1 (patch) | |
tree | d9c44d436c0e3d2f927b58473e63af5a56701d18 /GateNot.h | |
parent | 1fcb7e5f3b2f1ce8663192c62529ce227a046af3 (diff) |
check member visibility
Diffstat (limited to 'GateNot.h')
-rw-r--r-- | GateNot.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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; }; |