blob: e094f46d43caf10041dd13b0aec5b17e086d32bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include "GateOr.h"
class GateNor : public GateOr {
using GateOr::GateOr;
public:
virtual GateNor * clone() const;
public:
SignalLevel level();
private:
GateNor(const GateNor *) : GateOr() {}
constexpr static const char * type = "nor";
static GateNor instance;
};
|