diff options
Diffstat (limited to 'Node.cpp')
-rw-r--r-- | Node.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -4,6 +4,8 @@ #include "NodeFactory.h" #include "Net.h" +#include "prut.h" + Node::Node(const char * type) { NodeFactory::assign(type, this); } @@ -33,6 +35,7 @@ void Node::sim() { } void Node::update(){ + prutprint("updated"); this->sim(); } |