summaryrefslogtreecommitdiffstats
path: root/src/pagedef.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2005-12-27 20:36:39 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2005-12-27 20:36:39 (GMT)
commitee58a783b27d50fa8545867108566dc0f3a1e026 (patch)
tree0e4517c465cd2c2702cd62de3f3f29bc068bc1da /src/pagedef.h
parented2cf9f703481e2b5fcf2b19f534d7228d48f0ed (diff)
downloadDoxygen-ee58a783b27d50fa8545867108566dc0f3a1e026.zip
Doxygen-ee58a783b27d50fa8545867108566dc0f3a1e026.tar.gz
Doxygen-ee58a783b27d50fa8545867108566dc0f3a1e026.tar.bz2
Release-1.4.5-20051227
Diffstat (limited to 'src/pagedef.h')
-rw-r--r--src/pagedef.h3
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>