aboutsummaryrefslogtreecommitdiff
path: root/GateNor.h
diff options
context:
space:
mode:
Diffstat (limited to 'GateNor.h')
-rw-r--r--GateNor.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/GateNor.h b/GateNor.h
index 35b5a74..e094f46 100644
--- a/GateNor.h
+++ b/GateNor.h
@@ -1,19 +1,18 @@
#pragma once
-// #include "Node.h"
#include "GateOr.h"
class GateNor : public GateOr {
+ using GateOr::GateOr;
+
public:
virtual GateNor * clone() const;
-protected:
+public:
SignalLevel level();
- using GateOr::GateOr;
private:
GateNor(const GateNor *) : GateOr() {}
- // GateNor(const char * type);
constexpr static const char * type = "nor";
static GateNor instance;
};