language/duchain
dumpdotgraph.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef DUMPDOTGRAPH_H
00015 #define DUMPDOTGRAPH_H
00016
00017 #include <QtCore/QMap>
00018 #include <QtCore/QString>
00019 #include <kurl.h>
00020 #include "../languageexport.h"
00021
00022 namespace KDevelop {
00023 class TopDUContext;
00024 class DUContext;
00028 class KDEVPLATFORMLANGUAGE_EXPORT DumpDotGraph {
00029 Q_DISABLE_COPY(DumpDotGraph)
00030 public:
00031 DumpDotGraph();
00032 ~DumpDotGraph();
00040 QString dotGraph(KDevelop::DUContext* context, bool shortened = false);
00041
00042 private:
00043 class DumpDotGraphPrivate* const d;
00044 };
00045 }
00046
00047 #endif // DUMPDOTGRAPH_H