diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-05-28 19:46:08 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-05-28 19:46:08 (GMT) |
commit | 3e33c5094f5127c719418656fff8e47d2e19405e (patch) | |
tree | 1f7723f69aa2917d2408894c68e7150f7b7ff3d5 /src/latexgen.h | |
parent | 745526b6e9683de926af27c4313574a514a3d7c3 (diff) | |
download | Doxygen-3e33c5094f5127c719418656fff8e47d2e19405e.zip Doxygen-3e33c5094f5127c719418656fff8e47d2e19405e.tar.gz Doxygen-3e33c5094f5127c719418656fff8e47d2e19405e.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) {} |