summaryrefslogtreecommitdiffstats
path: root/src/mangen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2011-07-27 19:00:12 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2011-07-27 19:00:12 (GMT)
commit64f0c97c3adaa28edf6f1da3264621a18c1d1adb (patch)
treee4c6389f90f951bbd01b45ad4377b0b475dd246f /src/mangen.cpp
parentb655037884e82e257794004d4e88d3a9ed29d5c3 (diff)
downloadDoxygen-64f0c97c3adaa28edf6f1da3264621a18c1d1adb.zip
Doxygen-64f0c97c3adaa28edf6f1da3264621a18c1d1adb.tar.gz
Doxygen-64f0c97c3adaa28edf6f1da3264621a18c1d1adb.tar.bz2
Release-1.7.4-20110727
Diffstat (limited to 'src/mangen.cpp')
-rw-r--r--src/mangen.cpp57
1 files changed, 50 insertions, 7 deletions
diff --git a/src/mangen.cpp b/src/mangen.cpp
index 585754f..87ddde6 100644
--- a/src/mangen.cpp
+++ b/src/mangen.cpp
@@ -30,6 +30,7 @@
#include <string.h>
#include "docparser.h"
#include "mandocvisitor.h"
+#include "language.h"
static QCString getExtension()
{
@@ -715,13 +716,6 @@ void ManGenerator::endConstraintList()
{
}
-void ManGenerator::startInlineDescription()
-{
-}
-
-void ManGenerator::endInlineDescription()
-{
-}
void ManGenerator::startInlineHeader()
{
@@ -738,5 +732,54 @@ void ManGenerator::endInlineHeader()
firstCol = FALSE;
}
+void ManGenerator::startMemberDocSimple()
+{
+ if (!firstCol)
+ {
+ t << endl << ".PP" << endl;
+ }
+ t << "\\fB";
+ docify(theTranslator->trCompoundMembers());
+ t << ":\\fP" << endl;
+ t << ".RS 4" << endl;
+}
+
+void ManGenerator::endMemberDocSimple()
+{
+ if (!firstCol) t << endl;
+ t << ".RE" << endl;
+ t << ".PP" << endl;
+ firstCol=TRUE;
+}
+
+void ManGenerator::startInlineMemberType()
+{
+}
+
+void ManGenerator::endInlineMemberType()
+{
+ t << " ";
+}
+void ManGenerator::startInlineMemberName()
+{
+ t << "\\fI";
+}
+
+void ManGenerator::endInlineMemberName()
+{
+ t << "\\fP ";
+}
+
+void ManGenerator::startInlineMemberDoc()
+{
+}
+
+void ManGenerator::endInlineMemberDoc()
+{
+ if (!firstCol) t << endl;
+ t << ".br" << endl;
+ t << ".PP" << endl;
+ firstCol=TRUE;
+}