mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-15 22:11:17 +08:00
Redundant macros were removed. Defines _WIN32, __linux__ and LININTEL were removed from qt samples *.pro files
23 lines
347 B
C
Executable File
23 lines
347 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
|