summaryrefslogtreecommitdiffstats
path: root/src/outputlist.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2011-12-26 14:28:40 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2011-12-26 14:28:40 (GMT)
commit4d121f89106d6c73fcb82dfc57b51fd9eb6a13d7 (patch)
tree7f59fc72959fc8ac950d4affd83be0c3b2b4cf2b /src/outputlist.h
parente7c5e0d738bcc16bb2194740fd009242d4059045 (diff)
downloadDoxygen-4d121f89106d6c73fcb82dfc57b51fd9eb6a13d7.zip
Doxygen-4d121f89106d6c73fcb82dfc57b51fd9eb6a13d7.tar.gz
Doxygen-4d121f89106d6c73fcb82dfc57b51fd9eb6a13d7.tar.bz2
Release-1.7.6.1-20111226
Diffstat (limited to 'src/outputlist.h')
-rw-r--r--src/outputlist.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/outputlist.h b/src/outputlist.h
index e832175..2e863e3 100644
--- a/src/outputlist.h
+++ b/src/outputlist.h
@@ -201,14 +201,14 @@ class OutputList : public OutputDocInterface
{ forall(&OutputGenerator::startAnonTypeScope,i1); }
void endAnonTypeScope(int i1)
{ forall(&OutputGenerator::endAnonTypeScope,i1); }
- void startMemberItem(int i1)
- { forall(&OutputGenerator::startMemberItem,i1); }
+ void startMemberItem(const char *anchor,int i1)
+ { forall(&OutputGenerator::startMemberItem,anchor,i1); }
void endMemberItem()
{ forall(&OutputGenerator::endMemberItem); }
void startMemberTemplateParams()
{ forall(&OutputGenerator::startMemberTemplateParams); }
- void endMemberTemplateParams()
- { forall(&OutputGenerator::endMemberTemplateParams); }
+ void endMemberTemplateParams(const char *anchor)
+ { forall(&OutputGenerator::endMemberTemplateParams,anchor); }
void startMemberGroupHeader(bool b)
{ forall(&OutputGenerator::startMemberGroupHeader,b); }
void endMemberGroupHeader()
@@ -295,8 +295,8 @@ class OutputList : public OutputDocInterface
{ forall(&OutputGenerator::startBold); }
void endBold()
{ forall(&OutputGenerator::endBold); }
- void startMemberDescription()
- { forall(&OutputGenerator::startMemberDescription); }
+ void startMemberDescription(const char *anchor)
+ { forall(&OutputGenerator::startMemberDescription,anchor); }
void endMemberDescription()
{ forall(&OutputGenerator::endMemberDescription); }
void startSimpleSect(SectionTypes t,const char *file,const char *anchor,
@@ -338,8 +338,8 @@ class OutputList : public OutputDocInterface
{ forall(&OutputGenerator::writeSplitBar,name); }
void writeLogo()
{ forall(&OutputGenerator::writeLogo); }
- void writeQuickLinks(bool compact,HighlightedItem hli)
- { forall(&OutputGenerator::writeQuickLinks,compact,hli); }
+ void writeQuickLinks(bool compact,HighlightedItem hli,const char *file)
+ { forall(&OutputGenerator::writeQuickLinks,compact,hli,file); }
void startContents()
{ forall(&OutputGenerator::startContents); }
void endContents()
@@ -489,15 +489,16 @@ class OutputList : public OutputDocInterface
FORALLPROTO1(bool);
FORALLPROTO2(bool,int);
FORALLPROTO2(bool,bool);
+ FORALLPROTO2(const char *,bool);
FORALLPROTO4(const char *,const char *,const char *,int);
#endif
FORALLPROTO2(int,bool);
- FORALLPROTO2(bool,HighlightedItem);
FORALLPROTO2(bool,const char *);
FORALLPROTO2(ParamListTypes,const char *);
FORALLPROTO2(const char *,const char *);
- FORALLPROTO2(const char *,bool);
+ FORALLPROTO2(const char *,int);
FORALLPROTO2(const char *,SectionInfo::SectionType);
+ FORALLPROTO3(bool,HighlightedItem,const char *);
FORALLPROTO3(bool,bool,bool);
FORALLPROTO3(const char *,const char *,bool);
FORALLPROTO3(const char *,const char *,SectionInfo::SectionType);