blob: 71580401ab73be39317f9f88967387880a040048 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
// #include "Node.h"
#include "GateAnd.h"
class GateNand : public GateAnd {
private:
SignalLevel level();
// GateNand(const char * type);
using GateAnd::GateAnd;
constexpr static const char * type = "nand";
static GateNand instance;
};
|