first commit

This commit is contained in:
陈赣
2026-06-03 12:43:14 +08:00
commit ba76cfae28
608 changed files with 120791 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#include "vp_placeholder_node.h"
namespace vp_nodes {
vp_placeholder_node::vp_placeholder_node(std::string node_name): vp_node(node_name) {
this->initialized();
}
vp_placeholder_node::~vp_placeholder_node() {
deinitialized();
}
}