summaryrefslogtreecommitdiffstats
path: root/src/section.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/section.h')
-rw-r--r--src/section.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/section.h b/src/section.h
index b1138b0..8210bfc 100644
--- a/src/section.h
+++ b/src/section.h
@@ -29,9 +29,15 @@ class PageInfo;
struct SectionInfo
{
- enum SectionType { Page, Section, Subsection, Subsubsection, Paragraph, 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; generated=FALSE; }
+ enum SectionType { Page, Section, Subsection,
+ Subsubsection, Paragraph, Anchor
+ };
+ SectionInfo(const char *f,const char *l,const char *t,
+ SectionType st,const char *r=0)
+ { label=l; title=t; type=st; ref=r;
+ definition=0; pageRef=0; generated=FALSE;
+ fileName=f;
+ }
~SectionInfo() {}
QCString label;
QCString title;