aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorInho Lee <inho.lee@qt.io>2024-01-15 07:51:25 +0100
committerInho Lee <inho.lee@qt.io>2024-01-16 05:54:33 +0000
commitdd36ae7aebcee1e2cf4963a3c60b994f2d611609 (patch)
treeaf7a95aa477cc49ff24548eb4fd68c73ee9384ee /src
parentb54ad76689d8a66609b026572b754b9f5e26d929 (diff)
Export BlendTrees
Export Timeline.BlendTrees in order to use in C++ Pick-to: 6.7 Change-Id: I38afba250afa9dd679c44eb80f8471dc14125f33 Reviewed-by: Andy Nichols <andy.nichols@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/timeline/blendtrees/qblendanimationnode_p.h2
-rw-r--r--src/timeline/blendtrees/qblendtreenode_p.h4
-rw-r--r--src/timeline/blendtrees/qtimelineanimationnode_p.h2
3 files changed, 5 insertions, 3 deletions
diff --git a/src/timeline/blendtrees/qblendanimationnode_p.h b/src/timeline/blendtrees/qblendanimationnode_p.h
index ad5814d..540a77d 100644
--- a/src/timeline/blendtrees/qblendanimationnode_p.h
+++ b/src/timeline/blendtrees/qblendanimationnode_p.h
@@ -22,7 +22,7 @@
QT_BEGIN_NAMESPACE
-class QBlendAnimationNode : public QBlendTreeNode
+class Q_QUICKTIMELINEBLENDTREES_EXPORT QBlendAnimationNode : public QBlendTreeNode
{
Q_OBJECT
Q_PROPERTY(QBlendTreeNode *source1 READ source1 WRITE setSource1 NOTIFY source1Changed FINAL)
diff --git a/src/timeline/blendtrees/qblendtreenode_p.h b/src/timeline/blendtrees/qblendtreenode_p.h
index ce45e9d..207289d 100644
--- a/src/timeline/blendtrees/qblendtreenode_p.h
+++ b/src/timeline/blendtrees/qblendtreenode_p.h
@@ -15,12 +15,14 @@
// We mean it.
//
+#include "qtquicktimelineblendtreesglobal.h"
+
#include <QObject>
#include <QtQml>
QT_BEGIN_NAMESPACE
-class QBlendTreeNode : public QObject
+class Q_QUICKTIMELINEBLENDTREES_EXPORT QBlendTreeNode : public QObject
{
Q_OBJECT
Q_PROPERTY(bool outputEnabled READ outputEnabled WRITE setOutputEnabled NOTIFY outputEnabledChanged FINAL)
diff --git a/src/timeline/blendtrees/qtimelineanimationnode_p.h b/src/timeline/blendtrees/qtimelineanimationnode_p.h
index 32a6860..2128006 100644
--- a/src/timeline/blendtrees/qtimelineanimationnode_p.h
+++ b/src/timeline/blendtrees/qtimelineanimationnode_p.h
@@ -23,7 +23,7 @@
QT_BEGIN_NAMESPACE
-class QTimelineAnimationNode : public QBlendTreeNode
+class Q_QUICKTIMELINEBLENDTREES_EXPORT QTimelineAnimationNode : public QBlendTreeNode
{
Q_OBJECT
Q_PROPERTY(QQuickTimelineAnimation *animation READ animation WRITE setAnimation NOTIFY animationChanged FINAL)