Hello Sherman,

I'm having the same linker problem, but OSGUTIL_EXPORT is there.
Here's the first few lines of the header:
[...]
class OSGUTIL_EXPORT GLObjectsVisitor : public osg::NodeVisitor
[...]
What gives? Everythng compiles, but I'm getting the same linker error as you.


Look lower, there's another class declaration in that file:

class GLObjectsOperation : public osg::GraphicsOperation
{
// ...
}


You need to change that to

class OSGUTIL_EXPORT GLObjectsOperation : public osg::GraphicsOperation


Good luck,

J-S

--
______________________________________________________
Jean-Sebastien Guay     [EMAIL PROTECTED]
                        http://whitestar02.webhop.org/

----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.


_______________________________________________
osg-users mailing list
osg-users@openscenegraph.net
http://openscenegraph.net/mailman/listinfo/osg-users
http://www.openscenegraph.org/

Reply via email to