mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-21 10:13:43 +03:00
23 lines
381 B
C
Executable File
23 lines
381 B
C
Executable File
#ifndef COMMONSAMPLE_H
|
|
#define COMMONSAMPLE_H
|
|
|
|
#ifndef NO_COMMONSAMPLE_EXPORTS
|
|
#ifdef COMMONSAMPLE_EXPORTS
|
|
#ifdef WIN32
|
|
#define COMMONSAMPLE_EXPORT __declspec( dllexport )
|
|
#else
|
|
#define COMMONSAMPLE_EXPORT
|
|
#endif
|
|
#else
|
|
#ifdef WIN32
|
|
#define COMMONSAMPLE_EXPORT __declspec( dllimport )
|
|
#else
|
|
#define COMMONSAMPLE_EXPORT
|
|
#endif
|
|
#endif
|
|
#else
|
|
#define COMMONSAMPLE_EXPORT
|
|
#endif
|
|
|
|
#endif
|