diff options
author | David Boddie <dboddie@trolltech.com> | 2010-06-25 12:15:55 (GMT) |
---|---|---|
committer | David Boddie <dboddie@trolltech.com> | 2010-06-25 12:15:55 (GMT) |
commit | 00cb03e2dfbcaca69da980dc79d5b062d4b09028 (patch) | |
tree | 85ab78913132985599838a05b39100d2bcec0cea /tools/qdoc3/node.h | |
parent | ba76a029b9e6970ff5785ebfc65fa9e5b50ddb17 (diff) | |
parent | 532f349448f19cdd66a6a940bf5d268e893d3974 (diff) | |
download | Qt-00cb03e2dfbcaca69da980dc79d5b062d4b09028.zip Qt-00cb03e2dfbcaca69da980dc79d5b062d4b09028.tar.gz Qt-00cb03e2dfbcaca69da980dc79d5b062d4b09028.tar.bz2 |
Merge branch '4.7' of /home/dboddie/git/oslo-staging-1 into 4.7
Diffstat (limited to 'tools/qdoc3/node.h')
-rw-r--r-- | tools/qdoc3/node.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/qdoc3/node.h b/tools/qdoc3/node.h index af7596b..3baf6f2 100644 --- a/tools/qdoc3/node.h +++ b/tools/qdoc3/node.h @@ -55,6 +55,7 @@ #include "doc.h" #include "location.h" #include "text.h" +#include <QUuid> QT_BEGIN_NAMESPACE @@ -190,6 +191,8 @@ class Node void clearRelated() { rel = 0; } virtual QString fileBase() const; + QUuid guid() const; + QString ditaXmlHref(); protected: Node(Type type, InnerNode *parent, const QString& name); @@ -219,6 +222,7 @@ class Node QString u; QString sinc; QString tpl; + mutable QUuid uuid; }; class FunctionNode; |