summaryrefslogtreecommitdiffstats
path: root/src/outputlist.h
diff options
context:
space:
mode:
authormueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7>1999-12-15 19:34:06 (GMT)
committermueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7>1999-12-15 19:34:06 (GMT)
commitf18128845407f8612668950e112c2d5c3e0ff5be (patch)
tree43e0b215b5d3d2b436509cbb1cd22102aef61b1d /src/outputlist.h
parentdaf91dc906e217e81f77f491e0abf505a91289b8 (diff)
downloadDoxygen-f18128845407f8612668950e112c2d5c3e0ff5be.zip
Doxygen-f18128845407f8612668950e112c2d5c3e0ff5be.tar.gz
Doxygen-f18128845407f8612668950e112c2d5c3e0ff5be.tar.bz2
mods for doxygen-0.49-990829
Diffstat (limited to 'src/outputlist.h')
-rw-r--r--src/outputlist.h24
1 files changed, 20 insertions, 4 deletions
diff --git a/src/outputlist.h b/src/outputlist.h
index 8f66f63..79ee93f 100644
--- a/src/outputlist.h
+++ b/src/outputlist.h
@@ -96,6 +96,12 @@ class OutputList
{ forall(&OutputGenerator::startEnumList); }
void endEnumList()
{ forall(&OutputGenerator::endEnumList); }
+ void startAlfabeticalIndexList()
+ { forall(&OutputGenerator::startAlfabeticalIndexList); }
+ void endAlfabeticalIndexList()
+ { forall(&OutputGenerator::endAlfabeticalIndexList); }
+ void writeIndexHeading(const char *s)
+ { forall(&OutputGenerator::writeIndexHeading,s); }
void writeIndexItem(const char *ref,const char *file,const char *text)
{ forall(&OutputGenerator::writeIndexItem,ref,file,text); }
void docify(const char *s)
@@ -145,10 +151,14 @@ class OutputList
{ forall(&OutputGenerator::startMemberList); }
void endMemberList()
{ forall(&OutputGenerator::endMemberList); }
- void startMemberItem()
- { forall(&OutputGenerator::startMemberItem); }
- void endMemberItem()
- { forall(&OutputGenerator::endMemberItem); }
+ void startMemberItem(bool b1,int i1)
+ { forall(&OutputGenerator::startMemberItem,b1,i1); }
+ void endMemberItem(bool b1,const char *n1,const char *n2,bool b2)
+ { forall(&OutputGenerator::endMemberItem,b1,n1,n2,b2); }
+ void memberGroupSpacing(bool b)
+ { forall(&OutputGenerator::memberGroupSpacing,b); }
+ void memberGroupSeparator()
+ { forall(&OutputGenerator::memberGroupSeparator); }
void insertMemberAlign()
{ forall(&OutputGenerator::insertMemberAlign); }
void writeRuler()
@@ -287,6 +297,8 @@ class OutputList
{ forall(&OutputGenerator::endQuickIndexItem); }
void writeFormula(const char *n,const char *t)
{ forall(&OutputGenerator::writeFormula,n,t); }
+ void writeNonBreakableSpace()
+ { forall(&OutputGenerator::writeNonBreakableSpace); }
private:
void debug();
@@ -296,14 +308,18 @@ class OutputList
FORALLPROTO1(const char *);
FORALLPROTO1(char);
FORALLPROTO1(int);
+ FORALLPROTO1(bool);
FORALLPROTO1(IndexSections);
FORALLPROTO2(const char *,const char *);
FORALLPROTO2(int,bool);
+ FORALLPROTO2(bool,int);
+ FORALLPROTO2(bool,bool);
FORALLPROTO3(const char *,const char *,bool);
FORALLPROTO3(uchar,uchar,uchar);
FORALLPROTO3(const char *,const char *,const char *);
FORALLPROTO3(ClassDiagram &,const char *,const char *);
FORALLPROTO4(const char *,const char *,const char *,const char *);
+ FORALLPROTO4(bool,const char *,const char *,bool);
OutputList(const OutputList &ol);
QList<OutputGenerator> *outputs;