fix flaws to add PreCompiled.h inside normal header files

This commit is contained in:
wmayer
2020-02-03 15:03:49 +01:00
parent 390a0a2c51
commit 9b5bbb6973
4 changed files with 2 additions and 6 deletions

View File

@@ -24,8 +24,6 @@
#ifndef GUI_TEXTDOCUMENTEDITORVIEW_H
#define GUI_TEXTDOCUMENTEDITORVIEW_H
#include "PreCompiled.h"
#include <string>
#include <boost/signals2.hpp>
#include <QPlainTextEdit>

View File

@@ -23,8 +23,6 @@
#ifndef SOLVER_H
#define SOLVER_H
#include "PreCompiled.h"
#include "opendcm/core.hpp"
#ifdef ASSEMBLY_DEBUG_FACILITIES

View File

@@ -24,8 +24,6 @@
#ifndef FEM_PROPERTYPOSTDATASET_H
#define FEM_PROPERTYPOSTDATASET_H
#include "PreCompiled.h"
#include <App/Property.h>
#include <vtkSmartPointer.h>
#include <vtkDataObject.h>

View File

@@ -29,11 +29,13 @@
// Importing of App classes
#ifdef FC_OS_WIN32
# define AppFemExport __declspec(dllimport)
# define FemExport __declspec(dllimport)
# define PartExport __declspec(dllimport)
# define FemGuiExport __declspec(dllexport)
#else // for Linux
# define PartExport
# define AppFemExport
# define FemExport
# define FemGuiExport
#endif