mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-08 18:40:55 +03:00
23 lines
345 B
C
Executable File
23 lines
345 B
C
Executable File
#ifndef IESAMPLE_H
|
|
#define IESAMPLE_H
|
|
|
|
#ifndef NO_IESAMPLE_EXPORTS
|
|
#ifdef IESAMPLE_EXPORTS
|
|
#ifdef WIN32
|
|
#define IESAMPLE_EXPORT __declspec( dllexport )
|
|
#else
|
|
#define IESAMPLE_EXPORT
|
|
#endif
|
|
#else
|
|
#ifdef WIN32
|
|
#define IESAMPLE_EXPORT __declspec( dllimport )
|
|
#else
|
|
#define IESAMPLE_EXPORT
|
|
#endif
|
|
#endif
|
|
#else
|
|
#define IESAMPLE_EXPORT
|
|
#endif
|
|
|
|
#endif
|