Image: include header with export macros

This commit is contained in:
wmayer
2022-03-24 20:43:51 +01:00
parent 8aaccbd84f
commit c8f049f6db
3 changed files with 0 additions and 21 deletions

View File

@@ -25,13 +25,6 @@
#include <FCConfig.h>
// Exporting of App classes
#ifdef FC_OS_WIN32
# define ImageExport __declspec(dllexport)
#else // for Linux
# define ImageExport
#endif
#ifdef _PreComp_
/// here get the warnings of to long specifieres disabled (needed for VC6)
#ifdef _MSC_VER

View File

@@ -25,15 +25,6 @@
#include <FCConfig.h>
// Importing of App classes
#ifdef FC_OS_WIN32
# define ImageExport __declspec(dllimport)
# define ImageGuiExport __declspec(dllexport)
#else // for Linux
# define ImageExport
# define ImageGuiExport
#endif
// here get the warnings of too long specifiers disabled (needed for VC6)
#ifdef _MSC_VER
# pragma warning(disable : 4005)

View File

@@ -5,11 +5,6 @@
* *
***************************************************************************/
// this file contains the export macros for the App and Gui module
// for Qt Designer, see e.g.
// https://forum.freecadweb.org/viewtopic.php?p=558050#p558050
// why this is necessary
#include <FCGlobal.h>
#ifndef IMAGE_GLOBAL_H