From 5ed5221178624ac0080c47612e067ab988576d2e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 11 Jan 2011 17:20:25 +0000 Subject: [PATCH] From Wojciech Lewandowski, "We encountered a problem when we tried overloading StandardManipulator class. Linker was unable to find StandardManipulator::AnimationData methods. Prefixing AnimationData with OSGGA_EXPORT removed the issue. Fixed header is attached." --- include/osgGA/StandardManipulator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osgGA/StandardManipulator b/include/osgGA/StandardManipulator index 0695da4ba..cc117322a 100644 --- a/include/osgGA/StandardManipulator +++ b/include/osgGA/StandardManipulator @@ -146,7 +146,7 @@ class OSGGA_EXPORT StandardManipulator : public CameraManipulator bool _verticalAxisFixed; // animation stuff - class AnimationData : public osg::Referenced { + class OSGGA_EXPORT AnimationData : public osg::Referenced { public: double _animationTime; bool _isAnimating;