MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / BT_REGISTER_NODES

Function BT_REGISTER_NODES

sample_nodes/movebase_node.cpp:8–11  ·  view source on GitHub ↗

This function must be implemented in the .cpp file to create a plugin that can be loaded at run-time NOLINTNEXTLINE(misc-use-anonymous-namespace,misc-use-internal-linkage)

Source from the content-addressed store, hash-verified

6// a plugin that can be loaded at run-time
7// NOLINTNEXTLINE(misc-use-anonymous-namespace,misc-use-internal-linkage)
8BT_REGISTER_NODES(factory)
9{
10 factory.registerNodeType<MoveBaseAction>("MoveBase");
11}
12
13BT::NodeStatus MoveBaseAction::onStart()
14{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected