22 lines
408 B
Plaintext
22 lines
408 B
Plaintext
|
#ifndef OSGDB_EXPORT_
|
||
|
#define OSGDB_EXPORT_ 1
|
||
|
|
||
|
#ifdef WIN32
|
||
|
#pragma warning( disable : 4251 )
|
||
|
#pragma warning( disable : 4275 )
|
||
|
#pragma warning( disable : 4786 )
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#if defined(_MSC_VER)
|
||
|
# ifdef OSGDB_LIBRARY
|
||
|
# define OSGDB_EXPORT __declspec(dllexport)
|
||
|
# else
|
||
|
# define OSGDB_EXPORT __declspec(dllimport)
|
||
|
# endif /* OSGDBSG_LIBRARY */
|
||
|
#else
|
||
|
# define OSGDB_EXPORT
|
||
|
#endif
|
||
|
|
||
|
#endif
|