| 135 | */ |
| 136 | template <typename T> |
| 137 | void SetProperty(const std::string &key, const T &value) { |
| 138 | auto &node = AddUniqueNode(key); |
| 139 | node.Value(value); |
| 140 | } |
| 141 | |
| 142 | /** \typedef ChildList |
| 143 | * \brief List of pointer to child nodes. |
no test coverage detected