diff options
Diffstat (limited to 'GateNor.h')
-rw-r--r-- | GateNor.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/GateNor.h b/GateNor.h new file mode 100644 index 0000000..2c2760d --- /dev/null +++ b/GateNor.h @@ -0,0 +1,15 @@ +#pragma once + +// #include "Node.h" +#include "GateOr.h" + +class GateNor : public GateOr { +private: + SignalLevel level(); + + // GateNor(const char * type); + using GateOr::GateOr; + constexpr static const char * type = "nor"; + static GateNor instance; +}; + |