From 1e45b24a7f27a8f7d104d49adaea076f17f575f5 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 18 Jun 2009 08:29:20 +0000 Subject: [PATCH] Added exports --- include/osgAnimation/Action | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/osgAnimation/Action b/include/osgAnimation/Action index af235aa63..842d92cca 100644 --- a/include/osgAnimation/Action +++ b/include/osgAnimation/Action @@ -128,7 +128,7 @@ namespace osgAnimation // blend in from 0 to weight in duration - class BlendIn : public Action + class OSGANIMATION_EXPORT BlendIn : public Action { double _weight; osg::ref_ptr _animation; @@ -144,7 +144,7 @@ namespace osgAnimation }; // blend in from 0 to weight in duration - class BlendOut : public Action + class OSGANIMATION_EXPORT BlendOut : public Action { double _weight; osg::ref_ptr _animation; @@ -159,7 +159,7 @@ namespace osgAnimation }; - class ActionAnimation : public Action + class OSGANIMATION_EXPORT ActionAnimation : public Action { public: META_Action(osgAnimation, ActionAnimation); @@ -175,7 +175,7 @@ namespace osgAnimation // encapsulate animation with blend in blend out for classic usage - class StripAnimation : public Action + class OSGANIMATION_EXPORT StripAnimation : public Action { public: META_Action(osgAnimation, StripAnimation);