diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2008-01-16 19:20:21 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2008-01-16 19:20:21 (GMT) |
commit | 8dab665567c9dffaa3f5fea198fc2110d536594d (patch) | |
tree | 78bac4e928b25e139605aceefa82537f378d8af0 /src/htmlgen.h | |
parent | d3461a1c31f008345d784dc3e819047bc5265c30 (diff) | |
download | Doxygen-8dab665567c9dffaa3f5fea198fc2110d536594d.zip Doxygen-8dab665567c9dffaa3f5fea198fc2110d536594d.tar.gz Doxygen-8dab665567c9dffaa3f5fea198fc2110d536594d.tar.bz2 |
Release-1.5.4
Diffstat (limited to 'src/htmlgen.h')
-rw-r--r-- | src/htmlgen.h | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/src/htmlgen.h b/src/htmlgen.h index 5c318be..3af767c 100644 --- a/src/htmlgen.h +++ b/src/htmlgen.h @@ -1,6 +1,6 @@ /****************************************************************************** * - * + * $Id$ * * Copyright (C) 1997-2007 by Dimitri van Heesch. * @@ -173,11 +173,9 @@ class HtmlGenerator : public OutputGenerator void endIndent(); void writeSynopsis() {} void startClassDiagram(); - void endClassDiagram(ClassDiagram &,const char *,const char *); + void endClassDiagram(const ClassDiagram &,const char *,const char *); void startPageRef() {} void endPageRef(const char *,const char *) {} - //void startQuickIndexItem(const char *,const char *); - //void endQuickIndexItem(); void writeQuickLinks(bool compact,HighlightedItem hli); void writeNonBreakableSpace(int); @@ -195,16 +193,16 @@ class HtmlGenerator : public OutputGenerator { t << "</td></tr>" << endl; } void startDotGraph(); - void endDotGraph(DotClassGraph &g); + void endDotGraph(const DotClassGraph &g); void startInclDepGraph(); - void endInclDepGraph(DotInclDepGraph &g); + void endInclDepGraph(const DotInclDepGraph &g); void startGroupCollaboration(); - void endGroupCollaboration(DotGroupCollaboration &g); + void endGroupCollaboration(const DotGroupCollaboration &g); void startCallGraph(); - void endCallGraph(DotCallGraph &g); + void endCallGraph(const DotCallGraph &g); void startDirDepGraph(); - void endDirDepGraph(DotDirDeps &g); - void writeGraphicalHierarchy(DotGfxHierarchyTable &g); + void endDirDepGraph(const DotDirDeps &g); + void writeGraphicalHierarchy(const DotGfxHierarchyTable &g); void startTextBlock(bool) {} void endTextBlock(bool) {} |