summaryrefslogtreecommitdiffstats
path: root/src/outputgen.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2001-03-11 19:23:58 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2001-03-11 19:23:58 (GMT)
commitce5e0dcf2d3d55df510b76519ef43642bc331d96 (patch)
treef24fc61bb67f6c2a6757d0317c8493af462e5f9d /src/outputgen.h
parent9a5a2a29679e83614c9080153af3137bd789b07c (diff)
downloadDoxygen-ce5e0dcf2d3d55df510b76519ef43642bc331d96.zip
Doxygen-ce5e0dcf2d3d55df510b76519ef43642bc331d96.tar.gz
Doxygen-ce5e0dcf2d3d55df510b76519ef43642bc331d96.tar.bz2
Release-1.2.6
Diffstat (limited to 'src/outputgen.h')
-rw-r--r--src/outputgen.h14
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;