leon 1 month ago
parent
commit
cb6fa3e42a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/main.cpp

+ 2 - 1
src/main.cpp

@@ -1,7 +1,8 @@
 #include "nodes/base/base.hpp"
-
+#include "nodes/stream/streamNode.hpp"
 
 int main()
 {
+    std::shared_ptr<Node::StreamNode> node1 = std::make_shared<Node::BaseNode>("test", Node::NODE_TYPE::SRC_NODE);
     return 0;
 }