aboutsummaryrefslogtreecommitdiff
path: root/Node.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Node.cpp')
-rw-r--r--Node.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Node.cpp b/Node.cpp
index 5deaf03..a0fc27b 100644
--- a/Node.cpp
+++ b/Node.cpp
@@ -1,9 +1,10 @@
#include "Node.h"
+#include "NodeFactory.h"
#include <iostream>
Node::Node(const char * type) {
-
+ NodeFactory::assign(type, this);
}
void Node::addInput(Net* net) {