diff options
Diffstat (limited to 'src/rtfgen.h')
-rw-r--r-- | src/rtfgen.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/rtfgen.h b/src/rtfgen.h index 16d2b35..6e1209d 100644 --- a/src/rtfgen.h +++ b/src/rtfgen.h @@ -166,10 +166,10 @@ class RTFGenerator : public OutputGenerator void startMemberDescription(); void endMemberDescription(); - void startDescList(); + void startDescList(SectionTypes); void endDescList(); - void startParamList(ParamListTypes) { startDescList(); } - void endParamList() { endDescList(); } + void startParamList(ParamListTypes); + void endParamList(); void endDescTitle(); void writeDescItem(); void startSection(const char *,const char *,bool); @@ -194,6 +194,8 @@ class RTFGenerator : public OutputGenerator void writeNonBreakableSpace(int); void startImage(const char *,const char *,bool); void endImage(bool); + void startDotFile(const char *,bool); + void endDotFile(bool); void startDescTable(); void endDescTable(); |