mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03: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
|