diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-05-28 19:46:08 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-05-28 19:46:08 (GMT) |
commit | 832e08dcc70203d84f75249583a95fa172492aa2 (patch) | |
tree | 1f7723f69aa2917d2408894c68e7150f7b7ff3d5 /src/latexgen.h | |
parent | f38608d4bec002a5051c860a599dd4d5229a9671 (diff) | |
download | Doxygen-832e08dcc70203d84f75249583a95fa172492aa2.zip Doxygen-832e08dcc70203d84f75249583a95fa172492aa2.tar.gz Doxygen-832e08dcc70203d84f75249583a95fa172492aa2.tar.bz2 |
Release-1.1.3-20000528
Diffstat (limited to 'src/latexgen.h')
-rw-r--r-- | src/latexgen.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/latexgen.h b/src/latexgen.h index a3e10c3..933cb43 100644 --- a/src/latexgen.h +++ b/src/latexgen.h @@ -105,7 +105,7 @@ class LatexGenerator : public OutputGenerator void insertMemberAlign() {} void writeRuler() { t << endl << endl; /*t << "\\vspace{0.4cm}\\hrule\\vspace{0.2cm}" << endl; */ } - void writeAnchor(const char *name) { t << "\\label{" << name << "}" << endl; } + void writeAnchor(const char *fileName,const char *name); void startCodeFragment() { t << "\\small\\begin{verbatim}"; } void endCodeFragment() { t << "\\end{verbatim}\\normalsize " << endl; } void startCodeLine() { col=0; } @@ -211,10 +211,10 @@ class LatexGenerator : public OutputGenerator //static void docifyStatic(QTextStream &t,const char *str); - void startDotGraph() {} - void endDotGraph(DotClassGraph &) {} - void startInclDepGraph() {} - void endInclDepGraph(DotInclDepGraph &) {} + void startDotGraph(); + void endDotGraph(DotClassGraph &); + void startInclDepGraph(); + void endInclDepGraph(DotInclDepGraph &); void writeGraphicalHierarchy(DotGfxHierarchyTable &) {} void startTextBlock(bool) {} |