1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/samples/qt/Interface/src/IESample.h
ski 50fe2dab24 0026787: Do not declare redundant macros WNT, LIN, WIN32, WIN64 within samples project files
Redundant macros were removed.

Defines _WIN32, __linux__ and LININTEL were removed from qt samples *.pro files
2015-10-29 11:03:26 +03:00

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