mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-16 21:30:14 +08: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
|