diff options
Diffstat (limited to 'Node.cpp')
-rw-r--r-- | Node.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) { |