summaryrefslogtreecommitdiffstats
path: root/src/section.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/section.h')
-rw-r--r--src/section.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/section.h b/src/section.h
index 58605fa..90ac2d4 100644
--- a/src/section.h
+++ b/src/section.h
@@ -30,7 +30,7 @@ struct SectionInfo
{
enum SectionType { Section, Subsection, Anchor };
SectionInfo(const char *l,const char *t,SectionType st,const char *r=0)
- { label=l; title=t; type=st; ref=r; definition=0; pageRef=0; }
+ { label=l; title=t; type=st; ref=r; definition=0; pageRef=0; generated=FALSE; }
~SectionInfo() {}
QCString label;
QCString title;
@@ -39,6 +39,7 @@ struct SectionInfo
Definition *definition;
PageInfo *pageRef;
QCString fileName;
+ bool generated;
};
class SectionDict : public QDict<SectionInfo>