| 307 | DataTree::~DataTree() = default; |
| 308 | |
| 309 | DataNode *DataTree::rootNode() { |
| 310 | return &dn_root; |
| 311 | } |
| 312 | |
| 313 | std::string trim(std::string& s, const std::string& drop = " ") { |
| 314 | std::string r = s.erase(s.find_last_not_of(drop) + 1); |
no outgoing calls
no test coverage detected