diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-03-11 19:23:58 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-03-11 19:23:58 (GMT) |
commit | f280bea9dedf210e59b80f486bb016e348a387a6 (patch) | |
tree | f24fc61bb67f6c2a6757d0317c8493af462e5f9d /src/mangen.h | |
parent | 6b40e3de857d42921d0e6b736d9768d95e948da9 (diff) | |
download | Doxygen-f280bea9dedf210e59b80f486bb016e348a387a6.zip Doxygen-f280bea9dedf210e59b80f486bb016e348a387a6.tar.gz Doxygen-f280bea9dedf210e59b80f486bb016e348a387a6.tar.bz2 |
Release-1.2.6
Diffstat (limited to 'src/mangen.h')
-rw-r--r-- | src/mangen.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mangen.h b/src/mangen.h index 785cd75..920f1cb 100644 --- a/src/mangen.h +++ b/src/mangen.h @@ -76,7 +76,8 @@ class ManGenerator : public OutputGenerator const char *anchor,const char *name); void startTextLink(const char *,const char *) {} void endTextLink() {} - void writeHtmlLink(const char *url,const char *text); + void startHtmlLink(const char *url); + void endHtmlLink(); void writeMailLink(const char *url); void startTypewriter() { t << "\\fC"; firstCol=FALSE; } void endTypewriter() { t << "\\fR"; firstCol=FALSE; } @@ -164,6 +165,8 @@ class ManGenerator : public OutputGenerator void writeSharpS() { t << "s\\*:"; /* just a wild guess, need to check! */ firstCol=FALSE; } + void writeCCedil(char c) { t << c; /* TODO: fix this */ + firstCol=FALSE; } void startMemberDescription() { t << "\n.RI \"\\fI"; firstCol=FALSE; } void endMemberDescription() { t << "\\fR\""; firstCol=FALSE; } void startDescList(); |