Added extra export for windows build

This commit is contained in:
Robert Osfield 2010-01-21 16:26:48 +00:00
parent 793932a227
commit 8839736818
2 changed files with 4 additions and 3 deletions

View File

@ -69,7 +69,7 @@ protected:
SerializerList _backupSerializers;
};
class ObjectRegistry : public osg::Referenced
class OSGDB_EXPORT ObjectRegistry : public osg::Referenced
{
public:
static ObjectRegistry* instance();
@ -101,7 +101,7 @@ protected:
};
class RegisterWrapperProxy
class OSGDB_EXPORT RegisterWrapperProxy
{
public:
typedef void (*AddPropFunc)( ObjectWrapper* );
@ -145,7 +145,7 @@ protected:
#define REGISTER_COMPRESSOR(NAME, CLASS) \
static osgDB::RegisterCompressorProxy<CLASS> compressor_proxy_##CLASS(NAME);
class GlobalLookupTable : public osg::Referenced
class OSGDB_EXPORT GlobalLookupTable : public osg::Referenced
{
public:
typedef std::map<std::string, IntLookup> IntLookupMap;

View File

@ -40,6 +40,7 @@
#include <osg/Point>
#include <osg/TexGen>
#include <osg/ClipPlane>
#include <osg/Fog>
#include <sstream>