diff -r d8fccb2cd802 -r 468f4c8d3d5b Orb/Doxygen/src/htmlgen.h --- a/Orb/Doxygen/src/htmlgen.h Fri Apr 23 20:47:58 2010 +0100 +++ b/Orb/Doxygen/src/htmlgen.h Wed Aug 11 14:49:30 2010 +0100 @@ -2,7 +2,7 @@ * * * - * Copyright (C) 1997-2008 by Dimitri van Heesch. + * Copyright (C) 1997-2010 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby @@ -59,8 +59,8 @@ void startProjectNumber(); void endProjectNumber(); void writeStyleInfo(int part); - void startTitleHead(const char *) { startTitle(); } - void endTitleHead(const char *,const char *) { endTitle(); } + void startTitleHead(const char *); + void endTitleHead(const char *,const char *); void startTitle() { t << "

"; } void endTitle() { t << "

"; } @@ -99,7 +99,9 @@ void startMemberSections(); void endMemberSections(); - void startMemberHeader(); + void startHeaderSection(); + void endHeaderSection(); + void startMemberHeader(const char *); void endMemberHeader(); void startMemberSubtitle(); void endMemberSubtitle(); @@ -247,7 +249,7 @@ static void writeSearchFooter(QTextStream &t,const QCString &relPath); static void writeSearchData(const char *dir); - static void generateSectionImages(); + //static void generateSectionImages(); private: QCString lastTitle; @@ -259,6 +261,7 @@ HtmlGenerator(const HtmlGenerator &g); int col; + int m_sectionCount; }; #endif