diff options
Diffstat (limited to 'src/rtfgen.h')
-rw-r--r-- | src/rtfgen.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/rtfgen.h b/src/rtfgen.h index 5569328..b2971ad 100644 --- a/src/rtfgen.h +++ b/src/rtfgen.h @@ -58,12 +58,16 @@ class RTFGenerator : public OutputGenerator void startTitleHead(const char *); void startTitle(); void endTitleHead(const char *,const char *name); - void endTitle() {}; //{ t << "}"; } + void endTitle() {} void newParagraph(); void writeString(const char *text); void startIndexList(); void endIndexList(); + void startIndexKey(); + void endIndexKey(); + void startIndexValue(); + void endIndexValue(const char *); void startItemList(); void endItemList(); void startEnumList(); |