| 62 | } |
| 63 | }; |
| 64 | Json::Value pathNodeToJson(PathNode const &node) { |
| 65 | PathNodeToJsonVisitor visitor; |
| 66 | return applyPathNodeVisitor(visitor, node); |
| 67 | } |
| 68 | /// @brief A PathNode (tree) visitor to recursively convert nodes in a |
| 69 | /// PathTree to JSON |
| 70 | class PathTreeToJsonVisitor { |
no test coverage detected