diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2004-05-26 19:08:11 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2004-05-26 19:08:11 (GMT) |
commit | 62039dd46dfca33a45f5461a3732b3a707e4ce8b (patch) | |
tree | d4b609faf73bfab7a9ddbbbeceb63eb296ce6243 /src/docparser.h | |
parent | 820c90090848a96b959c562209bc3242fee58a53 (diff) | |
download | Doxygen-62039dd46dfca33a45f5461a3732b3a707e4ce8b.zip Doxygen-62039dd46dfca33a45f5461a3732b3a707e4ce8b.tar.gz Doxygen-62039dd46dfca33a45f5461a3732b3a707e4ce8b.tar.bz2 |
Release-1.3.7-20040526
Diffstat (limited to 'src/docparser.h')
-rw-r--r-- | src/docparser.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/docparser.h b/src/docparser.h index da57809..1b75451 100644 --- a/src/docparser.h +++ b/src/docparser.h @@ -541,16 +541,15 @@ class DocXRefItem : public CompAccept<DocXRefItem>, public DocNode { public: //enum Type { Bug, Test, Todo, Deprecated }; - DocXRefItem(DocNode *parent,int id,const char *key) : - m_parent(parent), m_id(id), m_key(key) /*, m_type(t)*/ {} + DocXRefItem(DocNode *parent,int id,const char *key); Kind kind() const { return Kind_XRefItem; } - //Type type() const { return m_type; } QString file() const { return m_file; } QString anchor() const { return m_anchor; } QString title() const { return m_title; } DocNode *parent() const { return m_parent; } + QString relPath() const { return m_relPath; } void accept(DocVisitor *v) { CompAccept<DocXRefItem>::accept(this,v); } - void parse(); + bool parse(); private: DocNode *m_parent; @@ -559,6 +558,7 @@ class DocXRefItem : public CompAccept<DocXRefItem>, public DocNode QString m_file; QString m_anchor; QString m_title; + QString m_relPath; }; /*! @brief Node representing an image */ |