mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-27 01:40:33 +05:00
Add dll import/export on WIN32 platform.
This commit is contained in:
parent
7cf5e26857
commit
5c7170a3e6
@ -33,7 +33,18 @@
|
||||
#include <string>
|
||||
#include <map>
|
||||
|
||||
class MeshJobManager_i: public virtual POA_MESHJOB::MeshJobManager,
|
||||
#ifdef WIN32
|
||||
#if defined MESHJOBMANAGERENGINE_EXPORTS || defined MeshJobManagerEngine_EXPORTS
|
||||
#define MESHJOBMANAGERENGINE_EXPORT __declspec( dllexport )
|
||||
#else
|
||||
#define MESHJOBMANAGERENGINE_EXPORT __declspec( dllimport )
|
||||
#endif
|
||||
#else
|
||||
#define MESHJOBMANAGERENGINE_EXPORT
|
||||
#endif
|
||||
|
||||
|
||||
class MESHJOBMANAGERENGINE_EXPORT MeshJobManager_i: public virtual POA_MESHJOB::MeshJobManager,
|
||||
public Engines_Component_i
|
||||
{
|
||||
public:
|
||||
|
Loading…
Reference in New Issue
Block a user