summaryrefslogtreecommitdiffstats
path: root/src/docparser.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2004-03-24 21:24:19 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2004-03-24 21:24:19 (GMT)
commitcba24284923c7319c08926c3ba9cd20f3eee3fdf (patch)
treea065befb32bff6f5eb381ff808ed70509bd19a09 /src/docparser.h
parentce05925c34c21ec1d2033970745a86affd039445 (diff)
downloadDoxygen-cba24284923c7319c08926c3ba9cd20f3eee3fdf.zip
Doxygen-cba24284923c7319c08926c3ba9cd20f3eee3fdf.tar.gz
Doxygen-cba24284923c7319c08926c3ba9cd20f3eee3fdf.tar.bz2
Release-1.3.6-20040324
Diffstat (limited to 'src/docparser.h')
-rw-r--r--src/docparser.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/docparser.h b/src/docparser.h
index 0aba864..6ccb05c 100644
--- a/src/docparser.h
+++ b/src/docparser.h
@@ -203,6 +203,7 @@ class DocLinkedWord : public DocNode
Kind kind() const { return Kind_Word; }
DocNode *parent() const { return m_parent; }
QString file() const { return m_file; }
+ QString relPath() const { return m_relPath; }
QString ref() const { return m_ref; }
QString anchor() const { return m_anchor; }
void accept(DocVisitor *v) { v->visit(this); }
@@ -212,6 +213,7 @@ class DocLinkedWord : public DocNode
QString m_word;
QString m_ref;
QString m_file;
+ QString m_relPath;
QString m_anchor;
};
@@ -614,6 +616,7 @@ class DocLink : public CompAccept<DocLink>, public DocNode
QString parse(bool);
Kind kind() const { return Kind_Link; }
QString file() const { return m_file; }
+ QString relPath() const { return m_relPath; }
QString ref() const { return m_ref; }
QString anchor() const { return m_anchor; }
DocNode *parent() const { return m_parent; }
@@ -622,6 +625,7 @@ class DocLink : public CompAccept<DocLink>, public DocNode
private:
DocNode *m_parent;
QString m_file;
+ QString m_relPath;
QString m_ref;
QString m_anchor;
QString m_refText;
@@ -635,6 +639,7 @@ class DocRef : public CompAccept<DocRef>, public DocNode
void parse();
Kind kind() const { return Kind_Ref; }
QString file() const { return m_file; }
+ QString relPath() const { return m_relPath; }
QString ref() const { return m_ref; }
QString anchor() const { return m_anchor; }
QString targetTitle() const { return m_text; }
@@ -649,6 +654,7 @@ class DocRef : public CompAccept<DocRef>, public DocNode
bool m_refToSection;
bool m_refToAnchor;
QString m_file;
+ QString m_relPath;
QString m_ref;
QString m_anchor;
QString m_text;
@@ -662,6 +668,7 @@ class DocInternalRef : public CompAccept<DocInternalRef>, public DocNode
void parse();
Kind kind() const { return Kind_Ref; }
QString file() const { return m_file; }
+ QString relPath() const { return m_relPath; }
QString anchor() const { return m_anchor; }
DocNode *parent() const { return m_parent; }
void accept(DocVisitor *v) { CompAccept<DocInternalRef>::accept(this,v); }
@@ -669,6 +676,7 @@ class DocInternalRef : public CompAccept<DocInternalRef>, public DocNode
private:
DocNode * m_parent;
QString m_file;
+ QString m_relPath;
QString m_anchor;
};