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

18
nodes/vp_message_broker_node.h Executable file
View File

@@ -0,0 +1,18 @@
#pragma once
#include "vp_node.h"
namespace vp_nodes {
class vp_message_broker_node : public vp_node
{
private:
/* data */
protected:
virtual std::shared_ptr<vp_objects::vp_meta> handle_frame_meta(std::shared_ptr<vp_objects::vp_frame_meta> meta) override;
virtual std::shared_ptr<vp_objects::vp_meta> handle_control_meta(std::shared_ptr<vp_objects::vp_control_meta> meta) override;
public:
vp_message_broker_node(std::string node_name);
~vp_message_broker_node();
};
}