summaryrefslogtreecommitdiffstats
path: root/tools/qdoc3/node.h
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@nokia.com>2010-06-18 12:47:55 (GMT)
committerMartin Smith <martin.smith@nokia.com>2010-06-18 12:47:55 (GMT)
commitf0ef28beec5531d2cd0c2829b272710dbc3991af (patch)
treeea6c2c064092d9384a915d5a1f5052082eb7c1ac /tools/qdoc3/node.h
parent68a2073cca205d8a6c4a44305045e1ac64f664f0 (diff)
downloadQt-f0ef28beec5531d2cd0c2829b272710dbc3991af.zip
Qt-f0ef28beec5531d2cd0c2829b272710dbc3991af.tar.gz
Qt-f0ef28beec5531d2cd0c2829b272710dbc3991af.tar.bz2
doc: Added more DITA output to the XML generator
More cxxFunction stuff for member functions. Task-number: QTBUG-11391
Diffstat (limited to 'tools/qdoc3/node.h')
-rw-r--r--tools/qdoc3/node.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/qdoc3/node.h b/tools/qdoc3/node.h
index ccfd9b6..44cdac2 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 { return uuid; }
+ QString ditaXmlHref();
protected:
Node(Type type, InnerNode *parent, const QString& name);
@@ -219,6 +222,7 @@ class Node
QString u;
QString sinc;
QString tpl;
+ QUuid uuid;
};
class FunctionNode;