blob: 5eedc07632491c00691c562fa378659686fc095d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#include "Node.h"
class GateAnd : public Node {
public:
GateAnd(const GateAnd * prototype);
virtual ~GateAnd() = default;
virtual void compare();
virtual GateAnd * clone() const;
private:
GateAnd(const char * type);
constexpr static const char * type = "and";
static GateAnd instance;
};
|