| 36 | #include <algorithm> |
| 37 | |
| 38 | DOTNode::DOTNode(std::string const &id) : m_id(id) {} |
| 39 | |
| 40 | DOTGraphOutput::DOTGraphOutput(std::ostream &stream) |
| 41 | : m_count(0), m_os(stream), m_treeShape(false) { |
nothing calls this directly
no outgoing calls
no test coverage detected