summaryrefslogtreecommitdiffstats
path: root/src/mangen.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2011-07-27 19:00:12 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2011-07-27 19:00:12 (GMT)
commit3426c85df5daa8d679bc2ed87740ccbc34d6346b (patch)
treee4c6389f90f951bbd01b45ad4377b0b475dd246f /src/mangen.cpp
parent9f83539241a64ce7f74d80c118e555e1fc8f8077 (diff)
downloadDoxygen-3426c85df5daa8d679bc2ed87740ccbc34d6346b.zip
Doxygen-3426c85df5daa8d679bc2ed87740ccbc34d6346b.tar.gz
Doxygen-3426c85df5daa8d679bc2ed87740ccbc34d6346b.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;
+}