diff options
author | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2024-06-12 13:21:20 +0200 |
---|---|---|
committer | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2024-06-12 13:21:20 +0200 |
commit | db98449454a0d94a9e375c0fe0998c76d7c5d6ef (patch) | |
tree | 3cfb6d03d734d22171555e10e157c7e916dc5037 /NodeOutput.cpp | |
parent | abd2e7d06055cf5e0e203279a4e19f19abdb0170 (diff) | |
parent | f134abd08ccfdb1ece39df4d4a0e422419bd2fed (diff) |
Merge branch 'node'
Diffstat (limited to 'NodeOutput.cpp')
-rw-r--r-- | NodeOutput.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/NodeOutput.cpp b/NodeOutput.cpp new file mode 100644 index 0000000..cff66c0 --- /dev/null +++ b/NodeOutput.cpp @@ -0,0 +1,18 @@ +#include "NodeOutput.h" +#include <iostream> + +NodeOutput NodeOutput::instance(NodeOutput::type); + +NodeOutput::NodeOutput(const char * type) : Node(type) { } + +void NodeOutput::compare() { + if (this->inputs.size() > 0) { + std::cout << this->inputs[0]->getLevel() << std::endl; + } +} + +NodeOutput::NodeOutput(const NodeOutput * prototype) : Node() { } + +NodeOutput * NodeOutput::clone() const { + return new NodeOutput(this); +}
\ No newline at end of file |