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

#include "Node.h"

class NodeOutput : public Node {
public:
	NodeOutput(const NodeOutput * prototype);
	~NodeOutput() = default;
	virtual void sim();
	SignalLevel level() { return UNDEFINED; };
	virtual NodeOutput * clone() const;

private:
	NodeOutput(const char * type);
	constexpr static const char * type = "probe";
	static NodeOutput instance;
};