diff options
Diffstat (limited to 'src/outputlist.h')
-rw-r--r-- | src/outputlist.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/outputlist.h b/src/outputlist.h index 7ae1973..3a6898d 100644 --- a/src/outputlist.h +++ b/src/outputlist.h @@ -134,8 +134,10 @@ class OutputList : public OutputDocInterface { forall(&OutputGenerator::startTextLink,file,anchor); } void endTextLink() { forall(&OutputGenerator::endTextLink); } - void writeHtmlLink(const char *url,const char *text) - { forall(&OutputGenerator::writeHtmlLink,url,text); } + void startHtmlLink(const char *url) + { forall(&OutputGenerator::startHtmlLink,url); } + void endHtmlLink() + { forall(&OutputGenerator::endHtmlLink); } void writeMailLink(const char *url) { forall(&OutputGenerator::writeMailLink,url); } void writeStartAnnoItem(const char *type,const char *file, @@ -296,6 +298,8 @@ class OutputList : public OutputDocInterface { forall(&OutputGenerator::writeRing,c); } void writeSharpS() { forall(&OutputGenerator::writeSharpS); } + void writeCCedil(char c) + { forall(&OutputGenerator::writeCCedil,c); } void startMemberDescription() { forall(&OutputGenerator::startMemberDescription); } void endMemberDescription() |