diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-01-05 10:26:10 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-01-05 10:26:10 (GMT) |
commit | a66e1ada3c7467e267ff39262178fa4577f0b6ab (patch) | |
tree | ee15d10d932fa1d21de3ebfcb445e2bd81b9f00b /src/rtfgen.h | |
parent | ff11b7d98ad7d24770afd151aa6b439adc7506d2 (diff) | |
download | Doxygen-a66e1ada3c7467e267ff39262178fa4577f0b6ab.zip Doxygen-a66e1ada3c7467e267ff39262178fa4577f0b6ab.tar.gz Doxygen-a66e1ada3c7467e267ff39262178fa4577f0b6ab.tar.bz2 |
Release-1.2.13.1
Diffstat (limited to 'src/rtfgen.h')
-rw-r--r-- | src/rtfgen.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/rtfgen.h b/src/rtfgen.h index 0f967b6..81633a6 100644 --- a/src/rtfgen.h +++ b/src/rtfgen.h @@ -152,12 +152,14 @@ class RTFGenerator : public OutputGenerator void endSubscript() { t << "}"; } void startSuperscript() { t << "{\\super " << endl;} void endSuperscript() { t << "}"; } - void startTable(int ) { }//t << "\\begin{TabularC}{" << c << "}\n\\hline\n"; - void endTable() { }//t << "\\\\\\hline\n\\end{TabularC}\n"; - void nextTableRow() { } - void endTableRow() { }//t << "\\\\\\hline\n"; - void nextTableColumn() { }//t << "&"; - void endTableColumn() { } + 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 writeCopyright() { t << "\251"; } void writeQuote() { t << "\""; } void writeUmlaut(char c); |