diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-03-24 21:24:19 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-03-24 21:24:19 (GMT) |
commit | 02b5f51ef09a211e16e0158e5115ddf5b33d194d (patch) | |
tree | a065befb32bff6f5eb381ff808ed70509bd19a09 /src/docparser.h | |
parent | f12fe31aed103718f5d4c368473302cc6ac82a47 (diff) | |
download | Doxygen-02b5f51ef09a211e16e0158e5115ddf5b33d194d.zip Doxygen-02b5f51ef09a211e16e0158e5115ddf5b33d194d.tar.gz Doxygen-02b5f51ef09a211e16e0158e5115ddf5b33d194d.tar.bz2 |
Release-1.3.6-20040324
Diffstat (limited to 'src/docparser.h')
-rw-r--r-- | src/docparser.h | 8 |
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; }; |