diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-05-08 20:42:05 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-05-08 20:42:05 (GMT) |
commit | 6c268019f8ce8b58058e7f7f8204c82b8d0ac190 (patch) | |
tree | 28a24e8c88d32a50bc5bef6d49306553267dc5ab /src/outputlist.h | |
parent | b5fb0aa0f1c2a5373ed97b127e2daeeb81ab38f2 (diff) | |
download | Doxygen-6c268019f8ce8b58058e7f7f8204c82b8d0ac190.zip Doxygen-6c268019f8ce8b58058e7f7f8204c82b8d0ac190.tar.gz Doxygen-6c268019f8ce8b58058e7f7f8204c82b8d0ac190.tar.bz2 |
Release-1.1.3
Diffstat (limited to 'src/outputlist.h')
-rw-r--r-- | src/outputlist.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/outputlist.h b/src/outputlist.h index 4826334..7ae0827 100644 --- a/src/outputlist.h +++ b/src/outputlist.h @@ -33,7 +33,7 @@ void forall(void (OutputGenerator::*func)(arg1,arg2,arg3,arg4),arg1,arg2,arg3,arg4) class ClassDiagram; -class DotGfxUsageGraph; +class DotClassGraph; class DotInclDepGraph; class DotGfxHierarchyTable; @@ -347,10 +347,10 @@ class OutputList { forall(&OutputGenerator::startDescTableData); } void endDescTableData() { forall(&OutputGenerator::endDescTableData); } - void startCollaborationDiagram() - { forall(&OutputGenerator::startCollaborationDiagram); } - void endCollaborationDiagram(DotGfxUsageGraph &g) - { forall(&OutputGenerator::endCollaborationDiagram,g); } + void startDotGraph() + { forall(&OutputGenerator::startDotGraph); } + void endDotGraph(DotClassGraph &g) + { forall(&OutputGenerator::endDotGraph,g); } void startInclDepGraph() { forall(&OutputGenerator::startInclDepGraph); } void endInclDepGraph(DotInclDepGraph &g) @@ -383,7 +383,7 @@ class OutputList FORALLPROTO1(char); FORALLPROTO1(IndexSections); FORALLPROTO1(int); - FORALLPROTO1(DotGfxUsageGraph &); + FORALLPROTO1(DotClassGraph &); FORALLPROTO1(DotInclDepGraph &); FORALLPROTO1(DotGfxHierarchyTable &); #if defined(HAS_BOOL_TYPE) |