diff options
Diffstat (limited to 'src/htmlgen.h')
-rw-r--r-- | src/htmlgen.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/htmlgen.h b/src/htmlgen.h index 1075e49..6f93ca4 100644 --- a/src/htmlgen.h +++ b/src/htmlgen.h @@ -197,8 +197,8 @@ class HtmlGenerator : public OutputGenerator void endParamList(); void endDescTitle() { t << "</b>"; } void writeDescItem() { t << "<dd>" << endl; } - void startSection(const char *,const char *,bool); - void endSection(const char *,bool); + void startSection(const char *,const char *,SectionInfo::SectionType); + void endSection(const char *,SectionInfo::SectionType); void writeSectionRef(const char *,const char *,const char *,const char *); void writeSectionRefItem(const char *,const char *,const char *); //void writeSectionRefAnchor(const char *,const char *,const char *); @@ -264,6 +264,9 @@ class HtmlGenerator : public OutputGenerator void startLatexOnly() {} void endLatexOnly() {} + void startSectionRefList(); + void endSectionRefList(); + private: QCString lastTitle; QCString lastFile; |