Add a child to this tree.
- Parameters
-
| [in] | args | T construct params. |
Definition at line 52 of file Tree.h.
53 {
54 m_Childs.push_back(std::make_unique<tree>(std::forward<Args>(args)...));
55
57 }
std::vector< std::unique_ptr< tree > > m_Childs
Children node.