aboutsummaryrefslogtreecommitdiff
path: root/GateAnd.h
blob: 40e39272bfc25f6849456862b07684e83fda8298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "Node.h"

class GateAnd : public Node {
public:
	GateAnd(const char * type);
	virtual ~GateAnd() = default;
	virtual void compare();

private:
	constexpr static const char * type = "and";
	static GateAnd instance;
};