diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-04-30 17:51:14 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-04-30 17:51:14 (GMT) |
commit | 62d3c6501af58ceb48ce8e56327d07ad69e79374 (patch) | |
tree | a37d75aa0ebe073906cb1a3c2c1506b96409f075 /src/rtfgen.h | |
parent | ff31b2f109848ea3e08fb17d5821beb7af879193 (diff) | |
download | Doxygen-62d3c6501af58ceb48ce8e56327d07ad69e79374.zip Doxygen-62d3c6501af58ceb48ce8e56327d07ad69e79374.tar.gz Doxygen-62d3c6501af58ceb48ce8e56327d07ad69e79374.tar.bz2 |
Release-1.2.15-20020430
Diffstat (limited to 'src/rtfgen.h')
-rw-r--r-- | src/rtfgen.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/rtfgen.h b/src/rtfgen.h index ddf6e7b..afa2df6 100644 --- a/src/rtfgen.h +++ b/src/rtfgen.h @@ -154,14 +154,14 @@ class RTFGenerator : public OutputGenerator void endSubscript() { t << "}"; } void startSuperscript() { t << "{\\super " << endl;} void endSuperscript() { t << "}"; } - void startTable(bool,int) { /* not implemented */ } - void endTable(bool) { /* not implemented */ } - void startCaption() { /* not implemented */ } - void endCaption() { /* not implemented */ } - void nextTableRow() { /* not implemented */ } - void endTableRow() { /* not implemented */ } - void nextTableColumn() { /* not implemented */ } - void endTableColumn() { /* not implemented */ } + void startTable(bool,int); + void endTable(bool); + void startCaption(); + void endCaption(); + void nextTableRow(); + void endTableRow(); + void nextTableColumn(); + void endTableColumn(); void writeCopyright() { t << "\251"; } void writeQuote() { t << "\""; } void writeUmlaut(char c); @@ -268,6 +268,7 @@ class RTFGenerator : public OutputGenerator bool m_bstartedBody; // has startbody been called yet? int m_listLevel; // // RTF does not really have a addative indent...manually set list level. bool m_omitParagraph; // should a the next paragraph command be ignored? + int m_columnNumbers; // number of columns in a table void beginRTFDocument(); void beginRTFChapter(); |