summaryrefslogtreecommitdiffstats
path: root/src/outputlist.h
diff options
context:
space:
mode:
authorahoogol <ahoogol@gmail.com>2017-06-25 07:32:35 (GMT)
committerahoogol <ahoogol@gmail.com>2017-06-25 07:32:35 (GMT)
commit5885c89d6b30ca607f84794d0de6800f49dd327b (patch)
tree4005066c10fd003cd6d93697b92a6cf7ba206266 /src/outputlist.h
parente7e62101a1a659740223c32cdd525b1e66b1cf09 (diff)
downloadDoxygen-5885c89d6b30ca607f84794d0de6800f49dd327b.zip
Doxygen-5885c89d6b30ca607f84794d0de6800f49dd327b.tar.gz
Doxygen-5885c89d6b30ca607f84794d0de6800f49dd327b.tar.bz2
Added support for RTL(right to left) languages like Arabic and Persian in HTML output
Diffstat (limited to 'src/outputlist.h')
-rw-r--r--src/outputlist.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/outputlist.h b/src/outputlist.h
index 5cec439..0738ed1 100644
--- a/src/outputlist.h
+++ b/src/outputlist.h
@@ -366,6 +366,10 @@ class OutputList : public OutputDocInterface
{ forall(&OutputGenerator::startContents); }
void endContents()
{ forall(&OutputGenerator::endContents); }
+ void startPageDoc(const char *pageTitle)
+ { forall(&OutputGenerator::startPageDoc, pageTitle); }
+ void endPageDoc()
+ { forall(&OutputGenerator::endPageDoc); }
void writeNonBreakableSpace(int num)
{ forall(&OutputGenerator::writeNonBreakableSpace,num); }
void startDescTable(const char *title)