diff options
author | albert-github <albert.tests@gmail.com> | 2018-03-29 12:37:52 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-03-29 12:37:52 (GMT) |
commit | 36afe5e25c10dfd5a6208df7c8892eb2bb7498c5 (patch) | |
tree | 69fa5054e6b9df0586e50e18e8d1883cfb1d1e18 /src/outputlist.h | |
parent | 7e2fcd305c8c9377aa958a3d812cc31bc81c0e32 (diff) | |
download | Doxygen-36afe5e25c10dfd5a6208df7c8892eb2bb7498c5.zip Doxygen-36afe5e25c10dfd5a6208df7c8892eb2bb7498c5.tar.gz Doxygen-36afe5e25c10dfd5a6208df7c8892eb2bb7498c5.tar.bz2 |
Better HTML output for VHDL Ports
Small alignment improvement of HTML output for VHDL Ports so that the mode will be in a separate column
Diffstat (limited to 'src/outputlist.h')
-rw-r--r-- | src/outputlist.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/outputlist.h b/src/outputlist.h index 0738ed1..2e89101 100644 --- a/src/outputlist.h +++ b/src/outputlist.h @@ -191,8 +191,8 @@ class OutputList : public OutputDocInterface { forall(&OutputGenerator::startHeaderSection); } void endHeaderSection() { forall(&OutputGenerator::endHeaderSection); } - void startMemberHeader(const char *anchor) - { forall(&OutputGenerator::startMemberHeader,anchor); } + void startMemberHeader(const char *anchor, int typ = 2) + { forall(&OutputGenerator::startMemberHeader,anchor,typ); } void endMemberHeader() { forall(&OutputGenerator::endMemberHeader); } void startMemberSubtitle() @@ -237,6 +237,8 @@ class OutputList : public OutputDocInterface { forall(&OutputGenerator::endMemberGroup,last); } void insertMemberAlign(bool templ=FALSE) { forall(&OutputGenerator::insertMemberAlign,templ); } + void insertMemberAlignLeft(int typ=0, bool templ=FALSE) + { forall(&OutputGenerator::insertMemberAlignLeft,typ,templ); } void writeRuler() { forall(&OutputGenerator::writeRuler); } void writeAnchor(const char *fileName,const char *name) @@ -306,8 +308,8 @@ class OutputList : public OutputDocInterface { forall(&OutputGenerator::startBold); } void endBold() { forall(&OutputGenerator::endBold); } - void startMemberDescription(const char *anchor,const char *inheritId=0) - { forall(&OutputGenerator::startMemberDescription,anchor,inheritId); } + void startMemberDescription(const char *anchor,const char *inheritId=0, bool typ = false) + { forall(&OutputGenerator::startMemberDescription,anchor,inheritId, typ); } void endMemberDescription() { forall(&OutputGenerator::endMemberDescription); } void startMemberDeclaration() |