diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-06-23 09:46:45 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-06-23 09:46:45 (GMT) |
commit | c454a5400393a54586d81517c42f7419b43b3f23 (patch) | |
tree | c485ad24b61429cd10455b2d438236483a47c189 /src/htmlgen.cpp | |
parent | 784e2b65dc675f89c8f21b3c7b306f5fb1bfa4ca (diff) | |
download | Doxygen-c454a5400393a54586d81517c42f7419b43b3f23.zip Doxygen-c454a5400393a54586d81517c42f7419b43b3f23.tar.gz Doxygen-c454a5400393a54586d81517c42f7419b43b3f23.tar.bz2 |
Release-1.2.16-20020623
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r-- | src/htmlgen.cpp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 80e2dc5..b165408 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -1176,3 +1176,39 @@ void HtmlGenerator::writeLineNumber(const char *ref,const char *file, } codify(" "); } + +void HtmlGenerator::startSimpleSect(SectionTypes, + const char *file,const char *anchor, + const char *title) +{ + t << "<dl compact><dt><b>"; + if (file) + { + writeObjectLink(0,file,anchor,title); + } + else + { + docify(title); + } + t << "</b></dt>"; +} + +void HtmlGenerator::endSimpleSect() +{ + t << "</dl>"; +} + +void HtmlGenerator::startParamList(ParamListTypes, + const char *title) +{ + t << "<dl compact><dt><b>"; + docify(title); + t << "</b></dt>"; +} + +void HtmlGenerator::endParamList() +{ + t << "</dl>"; +} + + |