summaryrefslogtreecommitdiffstats
path: root/src/mangen.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>1999-12-15 19:42:00 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>1999-12-15 19:42:00 (GMT)
commitdf5aeefd51095ad5b1f5fe1bf563a7302f93feeb (patch)
treee1e96dcb9bbad928271e0546023ea0a9841641b6 /src/mangen.h
parentdc2968f7b44b1a219a0695ba80c63cd0d7da0ef1 (diff)
downloadDoxygen-df5aeefd51095ad5b1f5fe1bf563a7302f93feeb.zip
Doxygen-df5aeefd51095ad5b1f5fe1bf563a7302f93feeb.tar.gz
Doxygen-df5aeefd51095ad5b1f5fe1bf563a7302f93feeb.tar.bz2
mods for doxygen-0.49-991205
Diffstat (limited to 'src/mangen.h')
-rw-r--r--src/mangen.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mangen.h b/src/mangen.h
index 72022d7..91dbc04 100644
--- a/src/mangen.h
+++ b/src/mangen.h
@@ -149,6 +149,12 @@ class ManGenerator : public OutputGenerator
void writeGrave(char c) { t << c << "\\*:"; firstCol=FALSE; }
void writeCirc(char c) { t << c << "\\*^"; firstCol=FALSE; }
void writeTilde(char c) { t << c << "\\*~"; firstCol=FALSE; }
+ void writeRing(char c) { t << c << "\\*0"; /* just a wild guess,
+ need to check! */
+ firstCol=FALSE; }
+ void writeSharpS() { t << "s\\*:"; /* just a wild guess,
+ need to check! */
+ firstCol=FALSE; }
void startMemberDescription() { t << "\n.RI \"\\fI"; firstCol=FALSE; }
void endMemberDescription() { t << "\\fR\""; firstCol=FALSE; }
void startDescList();