summaryrefslogtreecommitdiffstats
path: root/src/page.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-12-17 15:15:12 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-12-17 15:15:12 (GMT)
commit6505abff80c988faf734b2e4c31cd2a94c2c10b5 (patch)
tree8face58cec7cf3e5e23acec30b6af55f5bed931c /src/page.h
parentfe67b8eb68129713327965c201f2d7226b83202f (diff)
downloadDoxygen-6505abff80c988faf734b2e4c31cd2a94c2c10b5.zip
Doxygen-6505abff80c988faf734b2e4c31cd2a94c2c10b5.tar.gz
Doxygen-6505abff80c988faf734b2e4c31cd2a94c2c10b5.tar.bz2
Release-1.2.3-20001217
Diffstat (limited to 'src/page.h')
-rw-r--r--src/page.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/page.h b/src/page.h
index bb841f3..cbcf33c 100644
--- a/src/page.h
+++ b/src/page.h
@@ -16,6 +16,7 @@
*/
#include "sortdict.h"
+#include "config.h"
class PageInfo
{
@@ -33,6 +34,15 @@ class PageInfo
QCString doc;
QCString title;
+ // external reference? if so then this is the tag file name
+ QCString reference;
+
+ // functions to get a uniform interface with Definitions
+ QCString getOutputFileBase() const
+ { if (Config::caseSensitiveNames) return name; else return name.lower(); }
+ bool isReference() const { return !reference.isEmpty(); }
+ QCString getReference() const { return reference; }
+
// ids
int todoId;
int testId;