summaryrefslogtreecommitdiffstats
path: root/src/dotgfxhierarchytable.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotgfxhierarchytable.h')
-rw-r--r--src/dotgfxhierarchytable.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dotgfxhierarchytable.h b/src/dotgfxhierarchytable.h
index 0d884bd..089ecd2 100644
--- a/src/dotgfxhierarchytable.h
+++ b/src/dotgfxhierarchytable.h
@@ -27,6 +27,8 @@
#include "dotgraph.h"
#include "dotnode.h"
+class ClassLinkedMap;
+
/** Represents a graphical class hierarchy */
class DotGfxHierarchyTable : public DotGraph
{
@@ -44,7 +46,7 @@ class DotGfxHierarchyTable : public DotGraph
private:
void addHierarchy(DotNode *n,const ClassDef *cd,ClassDefSet &visited);
- void addClassList(const ClassSDict *cl,ClassDefSet &visited);
+ void addClassList(const ClassLinkedMap &cl,ClassDefSet &visited);
using DotNodeMap = std::unordered_multimap< std::string, std::unique_ptr<DotNode> >;
int m_graphId;