Web: include header with export macros

This commit is contained in:
wmayer
2022-03-24 20:40:59 +01:00
parent b02854f842
commit eb29be99c2
5 changed files with 3 additions and 16 deletions

View File

@@ -26,13 +26,6 @@
#include <FCConfig.h>
// Exporting of App classes
#ifdef FC_OS_WIN32
# define WebAppExport __declspec(dllexport)
#else // for Linux
# define WebAppExport
#endif
#ifdef _PreComp_
// standard

View File

@@ -26,6 +26,7 @@
#include <Gui/MDIView.h>
#include <Gui/Window.h>
#include <Mod/Web/WebGlobal.h>
#include <QLineEdit>
#if defined(QTWEBENGINE)

View File

@@ -27,6 +27,7 @@
#include <QFile>
#include <QNetworkCookieJar>
#include <QTimer>
#include <Mod/Web/WebGlobal.h>
class QNetworkCookieJar;

View File

@@ -26,14 +26,6 @@
#include <FCConfig.h>
// Importing of App classes
#ifdef FC_OS_WIN32
# define WebGuiExport __declspec(dllexport)
#else // for Linux
# define WebGuiExport
#endif
#ifdef _PreComp_
// standard

View File

@@ -31,7 +31,7 @@ namespace WebGui {
/**
* @author Werner Mayer
*/
class WebGuiExport Workbench : public Gui::StdWorkbench
class Workbench : public Gui::StdWorkbench
{
TYPESYSTEM_HEADER();