| 44 | namespace osvr { |
| 45 | namespace common { |
| 46 | PathTree::PathTree() : m_root(PathNode::createRoot()) {} |
| 47 | PathNode &PathTree::getNodeByPath(std::string const &path) { |
| 48 | return pathParseAndRetrieve(*m_root, path); |
| 49 | } |
nothing calls this directly
no outgoing calls
no test coverage detected