summaryrefslogtreecommitdiffstats
path: root/src/adaptationlayers/adaptationlayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/adaptationlayers/adaptationlayer.h')
-rw-r--r--src/adaptationlayers/adaptationlayer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/adaptationlayers/adaptationlayer.h b/src/adaptationlayers/adaptationlayer.h
index eb2ca68..5e42351 100644
--- a/src/adaptationlayers/adaptationlayer.h
+++ b/src/adaptationlayers/adaptationlayer.h
@@ -58,7 +58,7 @@ class TextureReference;
// TODO: Rename from XInterface to AbstractX.
-class RectangleNodeInterface : public GeometryNode
+class QT_SCENEGRAPH_EXPORT RectangleNodeInterface : public GeometryNode
{
public:
RectangleNodeInterface() : m_radius(0), m_opacity(1), m_pen_width(0) { }
@@ -94,7 +94,7 @@ protected:
int m_pen_width;
};
-class TextureNodeInterface : public GeometryNode
+class QT_SCENEGRAPH_EXPORT TextureNodeInterface : public GeometryNode
{
public:
TextureNodeInterface() : m_texture(0), m_opacity(1), m_clamp_to_edge(true), m_linear_filtering(false) { }
@@ -153,7 +153,7 @@ protected:
//};
-class GlyphNodeInterface: public GeometryNode
+class QT_SCENEGRAPH_EXPORT GlyphNodeInterface: public GeometryNode
{
public:
GlyphNodeInterface() : m_opacity(1.0) {}