summaryrefslogtreecommitdiffstats
path: root/src/page.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2002-09-01 19:53:48 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2002-09-01 19:53:48 (GMT)
commit0a37457c83248543ec84ee6cf7a64188a013fb8c (patch)
treeda974cfae9e6014de9194f883223647574559cba /src/page.h
parent55d2ef8412008e1560b0d5a2ecc2031f269af4a1 (diff)
downloadDoxygen-0a37457c83248543ec84ee6cf7a64188a013fb8c.zip
Doxygen-0a37457c83248543ec84ee6cf7a64188a013fb8c.tar.gz
Doxygen-0a37457c83248543ec84ee6cf7a64188a013fb8c.tar.bz2
Doxygen-1.2.17-20020901
Diffstat (limited to 'src/page.h')
-rw-r--r--src/page.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/page.h b/src/page.h
index 303d43c..d2101c5 100644
--- a/src/page.h
+++ b/src/page.h
@@ -25,7 +25,8 @@ class PageInfo
public:
PageInfo(const char *f, int l,const char *n,const char *d,const char *t) :
defFileName(f), defLine(l), name(n),
- doc(d), title(t), sectionDict(0),specialListItems(0),m_inGroup(0) {}
+ doc(d), title(t), context(0), sectionDict(0),specialListItems(0),m_inGroup(0)
+ {}
// where the page definition was found
QCString defFileName;
@@ -40,6 +41,9 @@ class PageInfo
QCString reference;
QCString fileName;
+ // class, file or namespace in which the page was found
+ Definition *context;
+
// functions to get a uniform interface with Definitions
QCString getOutputFileBase() const { return fileName; }
bool isReference() const { return !reference.isEmpty(); }