aboutsummaryrefslogtreecommitdiff
path: root/GateNor.h
blob: 35b5a7480e6b6e0e5e36ab2c785049135148d7a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

// #include "Node.h"
#include "GateOr.h"

class GateNor : public GateOr {
public:
	virtual GateNor * clone() const;

protected:
	SignalLevel level();
	using GateOr::GateOr;

private:
	GateNor(const GateNor *) : GateOr() {}
	// GateNor(const char * type);
	constexpr static const char * type = "nor";
	static GateNor instance;
};