MCPcopy 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
56TreeNode::TreeNode(std::string name, NodeConfig config)
57 : _p(new PImpl(std::move(name), std::move(config)))
58{}
59
60TreeNode::TreeNode(TreeNode&& other) noexcept : _p(std::move(other._p))
61{}

Callers

nothing calls this directly

Calls 1

moveFunction · 0.85

Tested by

no test coverage detected