summaryrefslogtreecommitdiffstats
path: root/src/render/io/qaxisalignedboundingbox_p.h
diff options
context:
space:
mode:
authorGuillermo A. Amaral <gamaral@kdab.com>2016-10-12 12:48:46 -0700
committerSean Harmer <sean.harmer@kdab.com>2017-01-20 13:56:25 +0000
commit4338a85487788bb553cef0eaa5e5a3f929934eea (patch)
tree8befa1065412ecaa90a1c931968d7876a9e24413 /src/render/io/qaxisalignedboundingbox_p.h
parentcef6d5406267787d22deee75600ee9d3653a3109 (diff)
QMesh geometry loading via plugin system
Ported ObjLoader to a plugin based system. Change-Id: I4bf50fe869f04173c022b6a22c45944ecdad4703 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/render/io/qaxisalignedboundingbox_p.h')
-rw-r--r--src/render/io/qaxisalignedboundingbox_p.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/render/io/qaxisalignedboundingbox_p.h b/src/render/io/qaxisalignedboundingbox_p.h
index c7a4d3767..7a88190b7 100644
--- a/src/render/io/qaxisalignedboundingbox_p.h
+++ b/src/render/io/qaxisalignedboundingbox_p.h
@@ -55,6 +55,8 @@
#include <QVector>
#include <QVector3D>
+#include <Qt3DRender/private/qt3drender_global_p.h>
+
QT_BEGIN_NAMESPACE
class QDebug;
@@ -84,7 +86,7 @@ public:
bool isNull() const { return m_center.isNull() && m_radii.isNull(); }
- void update(const QVector<QVector3D> &points);
+ void QT3DRENDERSHARED_PRIVATE_EXPORT update(const QVector<QVector3D> &points);
inline QVector3D center() const { return m_center; }
inline QVector3D radii() const { return m_radii; }