| 9 | } |
| 10 | |
| 11 | static void node_attr_print(const acl::xml_node& node, int depth) |
| 12 | { |
| 13 | const acl::xml_attr* attr = node.first_attr(); |
| 14 | while (attr) |
| 15 | { |
| 16 | attr_print(*attr, depth); |
| 17 | attr = node.next_attr(); |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | static void xml_node_print(const acl::xml_node& node, int depth) |
| 22 | { |
no test coverage detected
searching dependent graphs…