summaryrefslogtreecommitdiffstats
path: root/src/docparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/docparser.h')
-rw-r--r--src/docparser.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/docparser.h b/src/docparser.h
index bc42389..21a5a25 100644
--- a/src/docparser.h
+++ b/src/docparser.h
@@ -721,11 +721,13 @@ class DocRef : public CompAccept<DocRef>, public DocNode
bool hasLinkText() const { return !m_children.isEmpty(); }
bool refToAnchor() const { return m_refToAnchor; }
bool refToSection() const { return m_refToSection; }
+ bool isSubPage() const { return m_isSubPage; }
void accept(DocVisitor *v) { CompAccept<DocRef>::accept(this,v); }
private:
bool m_refToSection;
bool m_refToAnchor;
+ bool m_isSubPage;
QCString m_file;
QCString m_relPath;
QCString m_ref;