Return information about the graph */
| 116 | |
| 117 | /** Return information about the graph */ |
| 118 | std::string info() { |
| 119 | std::stringstream ss; |
| 120 | ss << name() << std::endl; |
| 121 | ss << pretty::header("Graph") << std::endl; |
| 122 | ss << graph_info(); |
| 123 | return ss.str(); |
| 124 | } |
| 125 | }; |
| 126 | } // namespace graphvite |
no test coverage detected