summaryrefslogtreecommitdiffstats
path: root/src/latexgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r--src/latexgen.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp
index ebf6a43..08b94da 100644
--- a/src/latexgen.cpp
+++ b/src/latexgen.cpp
@@ -2621,3 +2621,18 @@ void LatexGenerator::endInlineMemberDoc()
t << "\\\\\n\\hline\n" << endl;
}
+void LatexGenerator::startLabels()
+{
+ t << "\\hspace{0.3cm}";
+}
+
+void LatexGenerator::writeLabel(const char *l,bool isLast)
+{
+ t << "{\\ttfamily [" << l << "]}";
+ if (!isLast) t << ", ";
+}
+
+void LatexGenerator::endLabels()
+{
+}
+