diff options
Diffstat (limited to 'src/pagedef.h')
-rw-r--r-- | src/pagedef.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pagedef.h b/src/pagedef.h index d63eb33..ab8639f 100644 --- a/src/pagedef.h +++ b/src/pagedef.h @@ -49,12 +49,15 @@ class PageDef : public Definition bool visibleInIndex() const; bool documentedPage() const; bool hasSubPages() const; + void setPageScope(Definition *d){ pageScope = d; } + Definition *getPageScope() const { return pageScope; } private: QCString m_fileName; QCString m_title; GroupDef *m_inGroup; PageSDict *subPageDict; // list of pages in the group + Definition *pageScope; }; class PageSDict : public SDict<PageDef> |