diff options
Diffstat (limited to 'src/outputlist.h')
-rw-r--r-- | src/outputlist.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/outputlist.h b/src/outputlist.h index d6c68c9..86600df 100644 --- a/src/outputlist.h +++ b/src/outputlist.h @@ -329,20 +329,20 @@ class OutputList : public OutputDocInterface { forall(&OutputGenerator::startMemberDocPrefixItem); } void endMemberDocPrefixItem() { forall(&OutputGenerator::endMemberDocPrefixItem); } - void startMemberDocName() - { forall(&OutputGenerator::startMemberDocName); } + void startMemberDocName(bool align) + { forall(&OutputGenerator::startMemberDocName,align); } void endMemberDocName() { forall(&OutputGenerator::endMemberDocName); } - void startParameterType(bool first) - { forall(&OutputGenerator::startParameterType,first); } + void startParameterType(bool first,const char *key) + { forall(&OutputGenerator::startParameterType,first,key); } void endParameterType() { forall(&OutputGenerator::endParameterType); } void startParameterName(bool one) { forall(&OutputGenerator::startParameterName,one); } void endParameterName(bool last,bool one) { forall(&OutputGenerator::endParameterName,last,one); } - void startParameterList() - { forall(&OutputGenerator::startParameterList); } + void startParameterList(bool openBracket) + { forall(&OutputGenerator::startParameterList,openBracket); } void endParameterList() { forall(&OutputGenerator::endParameterList); } void startFontClass(const char *c) @@ -392,6 +392,7 @@ class OutputList : public OutputDocInterface #endif FORALLPROTO2(int,bool); FORALLPROTO2(bool,HighlightedItem); + FORALLPROTO2(bool,const char *); FORALLPROTO2(ParamListTypes,const char *); FORALLPROTO2(const char *,const char *); FORALLPROTO2(const char *,bool); |