summaryrefslogtreecommitdiffstats
path: root/src/latexgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2002-06-23 09:46:45 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2002-06-23 09:46:45 (GMT)
commit54bcd31ff103383c6c75ed87b00f846ec29b8040 (patch)
treec485ad24b61429cd10455b2d438236483a47c189 /src/latexgen.cpp
parentf7c4c021594300b449c3991de8c0918ad7f965af (diff)
downloadDoxygen-54bcd31ff103383c6c75ed87b00f846ec29b8040.zip
Doxygen-54bcd31ff103383c6c75ed87b00f846ec29b8040.tar.gz
Doxygen-54bcd31ff103383c6c75ed87b00f846ec29b8040.tar.bz2
Release-1.2.16-20020623
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r--src/latexgen.cpp34
1 files changed, 33 insertions, 1 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp
index 2508b98..90b8bc4 100644
--- a/src/latexgen.cpp
+++ b/src/latexgen.cpp
@@ -196,7 +196,7 @@ void LatexGenerator::init()
#if defined(_MSC_VER)
// ps2pdf.bat does not work properly from a makefile using GNU make!
<< "\tgswin32c -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite "
- "-sOutputFile=refman_2on1.pdf -c save pop -f refman_2on1.ps" << endl
+ "-sOutputFile=refman_2on1.pdf -c save pop -f refman_2on1.ps" << endl;
#else
<< "\tps2pdf refman_2on1.ps refman_2on1.pdf" << endl;
#endif
@@ -1916,3 +1916,35 @@ void LatexGenerator::endDescItem()
}
}
+void LatexGenerator::startSimpleSect(SectionTypes,const char *file,
+ const char *anchor,const char *title)
+{
+ t << "\\begin{Desc}\n\\item[";
+ if (file)
+ {
+ writeObjectLink(0,file,anchor,title);
+ }
+ else
+ {
+ docify(title);
+ }
+ t << "]";
+}
+
+void LatexGenerator::endSimpleSect()
+{
+ t << "\\end{Desc}" << endl;
+}
+
+void LatexGenerator::startParamList(ParamListTypes,const char *title)
+{
+ t << "\\begin{Desc}\n\\item[";
+ docify(title);
+ t << "]";
+}
+
+void LatexGenerator::endParamList()
+{
+ t << "\\end{Desc}" << endl;
+}
+