Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/BehaviorTree/BehaviorTree.CPP
/ TreeNode
Method
TreeNode
src/tree_node.cpp:56–58 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
54
};
55
56
TreeNode::TreeNode(std::string name, NodeConfig config)
57
: _p(new PImpl(std::move(name), std::move(config)))
58
{}
59
60
TreeNode::TreeNode(TreeNode&& other) noexcept : _p(std::move(other._p))
61
{}
Callers
nothing calls this directly
Calls
1
move
Function · 0.85
Tested by
no test coverage detected