blob: 2c2760dd48d006f6010567da5c8fc4b05145535e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
};
|