summaryrefslogtreecommitdiffstats
path: root/src/outputlist.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2002-01-05 10:26:10 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2002-01-05 10:26:10 (GMT)
commita66e1ada3c7467e267ff39262178fa4577f0b6ab (patch)
treeee15d10d932fa1d21de3ebfcb445e2bd81b9f00b /src/outputlist.h
parentff11b7d98ad7d24770afd151aa6b439adc7506d2 (diff)
downloadDoxygen-a66e1ada3c7467e267ff39262178fa4577f0b6ab.zip
Doxygen-a66e1ada3c7467e267ff39262178fa4577f0b6ab.tar.gz
Doxygen-a66e1ada3c7467e267ff39262178fa4577f0b6ab.tar.bz2
Release-1.2.13.1
Diffstat (limited to 'src/outputlist.h')
-rw-r--r--src/outputlist.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/outputlist.h b/src/outputlist.h
index 88f3cb4..d96feb7 100644
--- a/src/outputlist.h
+++ b/src/outputlist.h
@@ -277,10 +277,14 @@ class OutputList : public OutputDocInterface
{ forall(&OutputGenerator::startSuperscript); }
void endSuperscript()
{ forall(&OutputGenerator::endSuperscript); }
- void startTable(int cols)
- { forall(&OutputGenerator::startTable,cols); }
- void endTable()
- { forall(&OutputGenerator::endTable); }
+ void startTable(bool hasCaption,int cols)
+ { forall(&OutputGenerator::startTable,hasCaption,cols); }
+ void endTable(bool hasCaption)
+ { forall(&OutputGenerator::endTable,hasCaption); }
+ void startCaption()
+ { forall(&OutputGenerator::startCaption); }
+ void endCaption()
+ { forall(&OutputGenerator::endCaption); }
void nextTableRow()
{ forall(&OutputGenerator::nextTableRow); }
void endTableRow()