diff options
author | Martin Smith <martin.smith@nokia.com> | 2011-03-18 12:15:12 (GMT) |
---|---|---|
committer | Martin Smith <martin.smith@nokia.com> | 2011-03-18 12:15:12 (GMT) |
commit | 3a764060dab07ef0b51d7027b9606c73c0701d2f (patch) | |
tree | d835edc0bfb0cef56f6f66a5de1978cd04ec224e /tools/qdoc3/node.cpp | |
parent | 4d5f37bd4a472b144e5962dd4b24a6e81f89d390 (diff) | |
download | Qt-3a764060dab07ef0b51d7027b9606c73c0701d2f.zip Qt-3a764060dab07ef0b51d7027b9606c73c0701d2f.tar.gz Qt-3a764060dab07ef0b51d7027b9606c73c0701d2f.tar.bz2 |
qdoc: Added the <othermeta> element.
Diffstat (limited to 'tools/qdoc3/node.cpp')
-rw-r--r-- | tools/qdoc3/node.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/qdoc3/node.cpp b/tools/qdoc3/node.cpp index 3b1f280..0f85d37 100644 --- a/tools/qdoc3/node.cpp +++ b/tools/qdoc3/node.cpp @@ -858,6 +858,21 @@ void InnerNode::removeRelated(Node *pseudoChild) related.removeAll(pseudoChild); } +/*! \fn bool InnerNode::hasOtherMetadata() const + Returns tru if the other metadata map is not empty. + */ + +/*! + Insert the pair \a name and \a content into the other metadata map. + */ +void insertOtherMetadata(const QString& name, const QString& content) +{ +} + +/*! \fn const QMap<QString, QString>& InnerNode::otherMetadata() cont + Returns the map containing pairs for output as \c {<othermetadata>}. + */ + /*! \class LeafNode */ |