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/outputgen.h | |
parent | 6b40e3de857d42921d0e6b736d9768d95e948da9 (diff) | |
download | Doxygen-f280bea9dedf210e59b80f486bb016e348a387a6.zip Doxygen-f280bea9dedf210e59b80f486bb016e348a387a6.tar.gz Doxygen-f280bea9dedf210e59b80f486bb016e348a387a6.tar.bz2 |
Release-1.2.6
Diffstat (limited to 'src/outputgen.h')
-rw-r--r-- | src/outputgen.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/outputgen.h b/src/outputgen.h index 436ebcb..06ae375 100644 --- a/src/outputgen.h +++ b/src/outputgen.h @@ -103,14 +103,17 @@ class BaseOutputDocInterface virtual void writeCodeLink(const char *ref,const char *file, const char *anchor,const char *text) = 0; - /*! Writes a (link to an) URL found in the documentation. - * \param url To URL to link to. - * \param text The text to display as a placeholder for the link. + /*! Starts a (link to an) URL found in the documentation. + * \param url The URL to link to. + */ + virtual void startHtmlLink(const char *url) = 0; + + /*! Ends a link started by startHtmlLink(). */ - virtual void writeHtmlLink(const char *url,const char *text) = 0; + virtual void endHtmlLink() = 0; /*! Writes a (link to an) email address found in the documentation. - * \param url To email address, this is also used for the link text. + * \param url The email address, this is also used for the link text. */ virtual void writeMailLink(const char *url) = 0; @@ -202,6 +205,7 @@ class BaseOutputDocInterface virtual void writeTilde(char) = 0; virtual void writeRing(char) = 0; virtual void writeSharpS() = 0; + virtual void writeCCedil(char) = 0; virtual void startDescList() = 0; virtual void endDescList() = 0; virtual void startParamList() = 0; |