diff options
Diffstat (limited to 'src/mangen.h')
-rw-r--r-- | src/mangen.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mangen.h b/src/mangen.h index 3826518..96aa174 100644 --- a/src/mangen.h +++ b/src/mangen.h @@ -167,9 +167,11 @@ class ManGenerator : public OutputGenerator void startMemberDescription() { t << "\n.RI \"\\fI"; firstCol=FALSE; } void endMemberDescription() { t << "\\fR\""; firstCol=FALSE; } void startDescList(); + void endDescList() {} + void startParamList() { startDescList(); } + void endParamList() { endDescList(); } void endDescTitle(); void writeDescItem(); - void endDescList() {} void startSection(const char *,const char *,bool) {} void endSection(const char *,bool) {} void writeSectionRef(const char *,const char *,const char *,const char *) {} |