diff options
author | Martin Smith <martin.smith@nokia.com> | 2011-03-07 13:11:08 (GMT) |
---|---|---|
committer | Martin Smith <martin.smith@nokia.com> | 2011-03-07 13:11:08 (GMT) |
commit | c7871bcd8dc79103d21521cf365df12d335b0f7a (patch) | |
tree | defa41b2f8835dba79866e9e62137e108bf642b6 /tools/qdoc3/node.h | |
parent | b9c9b5d8e9a17e9d01562d757eb788cc332a7280 (diff) | |
download | Qt-c7871bcd8dc79103d21521cf365df12d335b0f7a.zip Qt-c7871bcd8dc79103d21521cf365df12d335b0f7a.tar.gz Qt-c7871bcd8dc79103d21521cf365df12d335b0f7a.tar.bz2 |
qdoc: Added Author> and <category> elements to the metadata.
Diffstat (limited to 'tools/qdoc3/node.h')
-rw-r--r-- | tools/qdoc3/node.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/qdoc3/node.h b/tools/qdoc3/node.h index d1123dc..3869e68 100644 --- a/tools/qdoc3/node.h +++ b/tools/qdoc3/node.h @@ -262,6 +262,8 @@ class InnerNode : public Node NodeList overloads(const QString &funcName) const; const QStringList& includes() const { return inc; } + QString author() const { return author_; } + void setAuthor(const QString& author) { author_ = author; } QStringList primaryKeys(); QStringList secondaryKeys(); const QStringList& pageKeywords() const { return pageKeywds; } @@ -280,6 +282,7 @@ class InnerNode : public Node void removeChild(Node* child); void removeRelated(Node* pseudoChild); + QString author_; QStringList pageKeywds; QStringList inc; NodeList children; |