| 45 | }; |
| 46 | |
| 47 | QString DumpDotGraph::dotGraph(KDevelop::DUContext* context, bool shortened) |
| 48 | { |
| 49 | Q_D(DumpDotGraph); |
| 50 | |
| 51 | d->m_hadObjects.clear(); |
| 52 | d->m_hadVersions.clear(); |
| 53 | d->m_topContext = context->topContext(); ///@todo maybe get this as a parameter |
| 54 | return d->dotGraphInternal(context, true, shortened); |
| 55 | } |
| 56 | |
| 57 | DumpDotGraph::DumpDotGraph() |
| 58 | : d_ptr(new DumpDotGraphPrivate()) |
no test coverage detected