diff options
author | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2024-06-12 20:06:48 +0200 |
---|---|---|
committer | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2024-06-12 20:06:48 +0200 |
commit | f1de485461b4cbb5dda4705323b416abec39b574 (patch) | |
tree | d8754423e16e87b299fdd747f7490d3e1f756474 /GateNor.h | |
parent | 50d3fb09278d57b5a35e15074cc025a62476c5a7 (diff) | |
parent | 26a7c785113e4e8343685b33d8ac4aa2023380f3 (diff) |
Merge remote-tracking branch 'origin/node'
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; +}; + |