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

#include "GateAnd.h"

class GateNand : public GateAnd {
	using GateAnd::GateAnd;

public:
	virtual GateNand * clone() const;

public:
	SignalLevel level();

private:
	GateNand(const GateNand *) : GateAnd() {}
	constexpr static const char * type = "nand";
	static GateNand instance;
};