| 34 | |
| 35 | template <typename T, typename... Args> |
| 36 | inline NodeBuilder CreateBuilder(Args... args) |
| 37 | { |
| 38 | return [=](const std::string& name, const NodeConfig& config) { |
| 39 | return TreeNode::Instantiate<T, Args...>(name, config, args...); |
| 40 | }; |
| 41 | } |
| 42 | |
| 43 | template <typename T> |
| 44 | inline TreeNodeManifest CreateManifest(const std::string& ID, |
nothing calls this directly
no outgoing calls
no test coverage detected