Spreadsheet: include header with export macros

This commit is contained in:
wmayer
2022-03-24 20:51:48 +01:00
parent d0d60cdf01
commit b8feeb31ca
7 changed files with 5 additions and 16 deletions

View File

@@ -27,13 +27,6 @@
#include <FCConfig.h>
// Importing of App classes
#ifdef FC_OS_WIN32
# define SpreadsheetExport __declspec(dllexport)
#else // for Linux
# define SpreadsheetExport
#endif
// here get the warnings of too long specifiers disabled (needed for VC6)
#ifdef _MSC_VER

View File

@@ -26,6 +26,7 @@
#include <map>
#include <App/Property.h>
#include <CXX/Objects.hxx>
#include <Mod/Spreadsheet/SpreadsheetGlobal.h>
namespace Spreadsheet {

View File

@@ -26,6 +26,7 @@
#include <map>
#include <App/Property.h>
#include <CXX/Objects.hxx>
#include <Mod/Spreadsheet/SpreadsheetGlobal.h>
namespace Spreadsheet {

View File

@@ -28,6 +28,7 @@
#include <set>
#include <memory>
#include <Base/BaseClass.h>
#include <Mod/Spreadsheet/SpreadsheetGlobal.h>
namespace Spreadsheet {

View File

@@ -27,15 +27,6 @@
#include <FCConfig.h>
// Importing of App classes
#ifdef FC_OS_WIN32
# define SpreadsheetExport __declspec(dllimport)
# define SpreadsheetGuiExport __declspec(dllexport)
#else // for Linux
# define SpreadsheetExport
# define SpreadsheetGuiExport
#endif
// here get the warnings of too long specifiers disabled (needed for VC6)
#ifdef _MSC_VER

View File

@@ -27,6 +27,7 @@
#include <Gui/ViewProviderDocumentObject.h>
#include <Gui/ViewProviderPythonFeature.h>
#include <Mod/Spreadsheet/SpreadsheetGlobal.h>
#include <QPointer>
namespace Spreadsheet {

View File

@@ -26,6 +26,7 @@
#define SPREADSHEET_WORKBENCH_H
#include <Gui/Workbench.h>
#include <Mod/Spreadsheet/SpreadsheetGlobal.h>
class QtColorPicker;
class QColor;