Sketcher: use CMake to generate precompiled headers on all platforms

"Professional CMake" book suggest the following:

"Targets should build successfully with or without compiler support for precompiled headers. It
 should be considered an optimization, not a requirement. In particular, do not explicitly include a
 precompile header (e.g. stdafx.h) in the source code, let CMake force-include an automatically
 generated precompile header on the compiler command line instead. This is more portable across
 the major compilers and is likely to be easier to maintain. It will also avoid warnings being
 generated from certain code checking tools like iwyu (include what you use)."

Therefore, removed the "#include <PreCompiled.h>" from sources, also
there is no need for the "#ifdef _PreComp_" anymore
This commit is contained in:
Markus Reitböck
2025-09-23 00:51:00 +02:00
parent 0019739095
commit ef670e7880
78 changed files with 43 additions and 237 deletions
-1
View File
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <Base/Console.h>
#include <Base/Interpreter.h>
-1
View File
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <App/Application.h>
#include <App/Document.h>
+3 -4
View File
@@ -123,7 +123,6 @@ SOURCE_GROUP("PlaneGCS" FILES ${PlaneGCS_SRCS})
SET(SketchModule_SRCS
AppSketcher.cpp
AppSketcherPy.cpp
PreCompiled.cpp
PreCompiled.h
Measure.cpp
Measure.h
@@ -159,9 +158,9 @@ if (FREECAD_WARN_ERROR)
endif()
if(FREECAD_USE_PCH)
add_definitions(-D_PreComp_)
GET_MSVC_PRECOMPILED_SOURCE("PreCompiled.cpp" Sketcher_CPP_SRCS ${Sketcher_PCH_SRCS})
ADD_MSVC_PRECOMPILED_HEADER(Sketcher PreCompiled.h PreCompiled.cpp Sketcher_CPP_SRCS)
target_precompile_headers(Sketcher PRIVATE
$<$<COMPILE_LANGUAGE:CXX>:"${CMAKE_CURRENT_LIST_DIR}/PreCompiled.h">
)
endif(FREECAD_USE_PCH)
# Suppress some very long Eigen3 warnings of older versions
-3
View File
@@ -20,8 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QDateTime>
#include <boost/random.hpp>
#include <algorithm>
@@ -30,7 +28,6 @@
#include <stdexcept>
#include <string>
#include <vector>
#endif
#include <fmt/ranges.h>
+1 -3
View File
@@ -20,10 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <sstream>
#endif
#include <Base/QuantityPy.h>
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <Base/Reader.h>
#include <Base/Writer.h>
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include "ExternalGeometryExtensionPy.h"
@@ -20,10 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <boost/uuid/uuid_io.hpp>
#endif
#include <Base/Console.h>
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <Base/GeometryPyCXX.h>
#include <Base/MatrixPy.h>
+2 -1
View File
@@ -20,10 +20,11 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include "GeoEnum.h"
#include <FCConfig.h>
using namespace Sketcher;
bool GeoElementId::operator==(const GeoElementId& obj) const
+4 -1
View File
@@ -23,9 +23,12 @@
#ifndef SKETCHER_GeoEnum_H
#define SKETCHER_GeoEnum_H
#include <Mod/Sketcher/SketcherGlobal.h>
#include <functional>
#include <FCConfig.h>
#include <Mod/Sketcher/SketcherGlobal.h>
namespace Sketcher
{
-3
View File
@@ -20,10 +20,7 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <cassert>
#endif // #ifndef _PreComp_
#include <boost/core/ignore_unused.hpp>
+1 -3
View File
@@ -20,10 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <boost/uuid/uuid_io.hpp>
#endif
#include "GeometryFacade.h"
#include "GeometryFacadePy.h"
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <Base/GeometryPyCXX.h>
#include <Base/MatrixPy.h>
-1
View File
@@ -22,7 +22,6 @@
//! a class for establishing our connection with the unified measurement facility
//! we are treating sketches like Part objects for now
#include "PreCompiled.h"
#include <App/Application.h>
#include <App/MeasureManager.h>
-24
View File
@@ -1,24 +0,0 @@
/***************************************************************************
* Copyright (c) 2008 Jürgen Riegel <[email protected]> *
* *
* This file is part of the FreeCAD CAx development system. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this library; see the file COPYING.LIB. If not, *
* write to the Free Software Foundation, Inc., 59 Temple Place, *
* Suite 330, Boston, MA 02111-1307, USA *
* *
***************************************************************************/
#include "PreCompiled.h"
-3
View File
@@ -26,8 +26,6 @@
#include <FCConfig.h>
#ifdef _PreComp_
// standard
#include <algorithm>
#include <cassert>
@@ -109,6 +107,5 @@
#elif defined(FC_OS_WIN32)
#include <windows.h>
#endif // _PreComp_
#endif
@@ -20,11 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <cassert>
#include <limits>
#endif
#include <App/ExpressionParser.h>
#include <App/ObjectIdentifier.h>
-3
View File
@@ -20,11 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <boost/algorithm/string/regex.hpp>
#include <boost/format.hpp>
#endif // #ifndef _PreComp_
#include <Base/Exception.h>
#include <Mod/Sketcher/App/Constraint.h>
-3
View File
@@ -20,8 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <cmath>
#include <iostream>
@@ -33,7 +31,6 @@
#include <TopoDS.hxx>
#include <TopoDS_Compound.hxx>
#include <TopoDS_Edge.hxx>
#endif
#include <Base/Console.h>
#include <Base/Exception.h>
-3
View File
@@ -21,8 +21,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <cmath>
#include <BRep_Tool.hxx>
@@ -33,7 +31,6 @@
#include <TopoDS_Shape.hxx>
#include <TopoDS_Vertex.hxx>
#include <gp_Pnt.hxx>
#endif
#include <App/Document.h>
#include <Base/Console.h>
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <Base/Reader.h>
#include <Base/Writer.h>
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include "SketchGeometryExtensionPy.h"
-4
View File
@@ -21,8 +21,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <algorithm>
#include <cmath>
#include <limits>
@@ -78,8 +76,6 @@
#include <boost/range/adaptor/map.hpp>
#include <boost/geometry.hpp>
#endif
#include <HLRAlgo_Projector.hxx>
#include <HLRBRep_Algo.hxx>
#include <HLRBRep_HLRToShape.hxx>
@@ -20,13 +20,10 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <memory>
#include <sstream>
#include <Geom_TrimmedCurve.hxx>
#endif
#include <App/Document.h>
#include <Base/AxisPy.h>
-1
View File
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <Base/Console.h>
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
// inclusion of the generated files (generated out of SketchObjectSFPy.xml)
#include "SketchObjectSFPy.h"
-1
View File
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <Base/VectorPy.h>
#include <Mod/Part/App/GeometryCurvePy.h>
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <Base/Exception.h>
#include <Mod/Part/App/Geometry.h>
-1
View File
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <Base/Console.h>
#include <Base/Interpreter.h>
+6 -8
View File
@@ -75,7 +75,6 @@ SET(SketcherGui_SRCS
CommandSketcherVirtualSpace.cpp
CommandAlterGeometry.cpp
Resources/Sketcher.qrc
PreCompiled.cpp
PreCompiled.h
SoZoomTranslation.cpp
SoZoomTranslation.h
@@ -171,13 +170,6 @@ SET(SketcherGui_SRCS
${Python_SRCS}
)
if(FREECAD_USE_PCH)
add_definitions(-D_PreComp_)
GET_MSVC_PRECOMPILED_SOURCE("PreCompiled.cpp" PCH_SRCS ${SketcherGui_SRCS})
ADD_MSVC_PRECOMPILED_HEADER(SketcherGui PreCompiled.h PreCompiled.cpp PCH_SRCS)
endif(FREECAD_USE_PCH)
SET(SketcherGuiIcon_SVG
Resources/icons/SketcherWorkbench.svg
)
@@ -187,6 +179,12 @@ add_library(SketcherGui SHARED
${SketcherGuiIcon_SVG}
)
if(FREECAD_USE_PCH)
target_precompile_headers(SketcherGui PRIVATE
$<$<COMPILE_LANGUAGE:CXX>:"${CMAKE_CURRENT_LIST_DIR}/PreCompiled.h">
)
endif(FREECAD_USE_PCH)
target_include_directories(
SketcherGui
PRIVATE
+1 -3
View File
@@ -20,8 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QApplication>
#include <QCheckBox>
#include <QGridLayout>
@@ -32,7 +30,7 @@
#include <QMessageBox>
#include <QSignalBlocker>
#include <QWidgetAction>
#endif
#include <App/DocumentObjectGroup.h>
#include <App/Datums.h>
@@ -20,10 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#endif
#include <Gui/Action.h>
#include <Gui/Application.h>
#include <Gui/BitmapFactory.h>
+1 -3
View File
@@ -20,12 +20,10 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <limits>
#include <Precision.hxx>
#include <QPainter>
#endif
#include <boost/range/adaptor/reversed.hpp>
@@ -20,14 +20,11 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <cstdlib>
#include <memory>
#include <QApplication>
#include <QString>
#endif
#include <App/Datums.h>
#include <Gui/Action.h>
@@ -20,11 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <Inventor/SbString.h>
#include <QApplication>
#endif
#include <App/Application.h>
#include <Base/Console.h>
@@ -20,11 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <Inventor/SbString.h>
#include <QApplication>
#endif
#include <App/Application.h>
#include <Base/Console.h>
@@ -20,8 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <FCConfig.h>
#include <memory>
#include <QApplication>
@@ -29,7 +29,6 @@
#include <QMessageBox>
#include <Inventor/SbString.h>
#endif
#include <App/Application.h>
#include <Base/Console.h>
@@ -20,10 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#endif
#include <App/Application.h>
#include <Base/Console.h>
#include <Gui/Action.h>
@@ -20,15 +20,12 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <cmath>
#include <QGuiApplication>
#include <QPainter>
#include <Inventor/events/SoKeyboardEvent.h>
#endif // #ifndef _PreComp_
#include <Base/Console.h>
#include <Base/Exception.h>
@@ -24,6 +24,8 @@
#ifndef SKETCHERGUI_DrawSketchHandlerOffset_H
#define SKETCHERGUI_DrawSketchHandlerOffset_H
#include <FCConfig.h>
#include <limits>
#include <QApplication>
@@ -21,15 +21,12 @@
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <Inventor/events/SoKeyboardEvent.h>
#include <QApplication>
#include <QEvent>
#include <QRegularExpression>
#include <QRegularExpressionMatch>
#endif
#include "ViewProviderSketch.h"
+1 -3
View File
@@ -20,14 +20,12 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
/// Qt Include Files
#include <Inventor/sensors/SoSensor.h>
#include <QApplication>
#include <QDialog>
#endif
#include <Base/Tools.h>
#include <Gui/Application.h>
@@ -20,8 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <memory>
#include <Inventor/SbVec3f.h>
@@ -40,7 +38,6 @@
#include <Inventor/nodes/SoSeparator.h>
#include <Inventor/nodes/SoText2.h>
#include <Inventor/nodes/SoTranslation.h>
#endif // #ifndef _PreComp_
#include <Base/Exception.h>
#include <Gui/Inventor/MarkerBitmaps.h>
@@ -20,7 +20,7 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <FCConfig.h>
#include "Mod/Sketcher/App/ExternalGeometryFacade.h"
@@ -20,8 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <FCConfig.h>
#include <QPainter>
#include <QRegularExpression>
#include <limits>
@@ -40,7 +40,6 @@
#include <Inventor/nodes/SoPickStyle.h>
#include <Inventor/nodes/SoSeparator.h>
#include <Inventor/nodes/SoTranslation.h>
#endif // #ifndef _PreComp_
#include <Base/Converter.h>
#include <Base/Exception.h>
@@ -20,7 +20,7 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <FCConfig.h>
#include <Base/Console.h>
#include <Base/Exception.h>
@@ -20,8 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <FCConfig.h>
#include <memory>
#include <Inventor/SbVec3f.h>
@@ -31,7 +31,6 @@
#include <Inventor/nodes/SoMarkerSet.h>
#include <Inventor/nodes/SoMaterial.h>
#include <Inventor/nodes/SoSeparator.h>
#endif // #ifndef _PreComp_
#include <Gui/Inventor/MarkerBitmaps.h>
#include <Gui/Inventor/SmSwitchboard.h>
@@ -20,8 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <Inventor/nodes/SoCoordinate3.h>
#include <Inventor/nodes/SoFont.h>
#include <Inventor/nodes/SoGroup.h>
@@ -31,7 +29,6 @@
#include <Inventor/nodes/SoSwitch.h>
#include <Inventor/nodes/SoText2.h>
#include <Inventor/nodes/SoTranslation.h>
#endif // #ifndef _PreComp_
#include <Base/Console.h>
#include <Base/Exception.h>
-23
View File
@@ -1,23 +0,0 @@
/***************************************************************************
* Copyright (c) 2008 Jürgen Riegel <juergen.riegel@web.de> *
* *
* This file is part of the FreeCAD CAx development system. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this library; see the file COPYING.LIB. If not, *
* write to the Free Software Foundation, Inc., 59 Temple Place, *
* Suite 330, Boston, MA 02111-1307, USA *
* *
***************************************************************************/
#include "PreCompiled.h"
-4
View File
@@ -25,8 +25,6 @@
#include <FCConfig.h>
#ifdef _PreComp_
// standard
#include <cmath>
#include <cstdlib>
@@ -71,6 +69,4 @@
// all of Inventor
#include <Gui/InventorAll.h>
#endif //_PreComp_
#endif // __PRECOMPILED_GUI__
@@ -20,12 +20,10 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QDebug>
#include <QTextStream>
#include <memory>
#endif
#include <Base/Tools.h>
#include <Mod/Sketcher/App/PropertyConstraintList.h>
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <Base/Console.h>
#include <Base/Interpreter.h>
+1 -3
View File
@@ -20,11 +20,9 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QKeyEvent>
#include <QKeySequence>
#endif
#include "ShortcutListener.h"
#include "ViewProviderSketch.h"
+1 -3
View File
@@ -20,10 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QDialog>
#endif
#include <Gui/MainWindow.h>
@@ -20,10 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QDialog>
#endif
#include <Gui/BitmapFactory.h>
#include <Gui/MainWindow.h>
@@ -20,10 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QDialog>
#endif
#include <Gui/MainWindow.h>
@@ -20,10 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QDialog>
#endif
#include <Gui/MainWindow.h>
+1 -3
View File
@@ -20,12 +20,10 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QMessageBox>
#include <QPainter>
#include <QPixmap>
#endif
#include <App/Application.h>
#include <Base/Console.h>
@@ -21,13 +21,10 @@
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <Inventor/events/SoKeyboardEvent.h>
#include <QApplication>
#include <QEvent>
#endif
#include "ui_SketcherToolDefaultWidget.h"
#include <Gui/Application.h>
-3
View File
@@ -20,10 +20,7 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QApplication>
#endif // #ifndef _PreComp_
#include <Base/Tools.h>
#include <Mod/Sketcher/App/SketchObject.h>
@@ -20,8 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <cmath>
#include <Inventor/actions/SoGLRenderAction.h>
@@ -30,7 +28,6 @@
#include <Inventor/elements/SoViewVolumeElement.h>
#include <Inventor/elements/SoViewportRegionElement.h>
#include <Inventor/nodes/SoCamera.h>
#endif
#include "SoZoomTranslation.h"
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <Gui/Command.h>
@@ -20,8 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QContextMenuEvent>
#include <QMenu>
#include <QPainter>
@@ -34,7 +32,6 @@
#include <boost/core/ignore_unused.hpp>
#include <cmath>
#include <limits>
#endif
#include <App/Application.h>
#include <App/Document.h>
@@ -20,10 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QEvent>
#endif
#include <Gui/BitmapFactory.h>
@@ -20,8 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QContextMenuEvent>
#include <QImage>
#include <QLineEdit>
@@ -35,7 +33,6 @@
#include <QWidgetAction>
#include <boost/core/ignore_unused.hpp>
#include <limits>
#endif
#include <App/Application.h>
#include <App/Document.h>
@@ -20,12 +20,9 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QAction>
#include <QMenu>
#include <QCheckBox>
#endif
#include <Gui/Application.h>
#include <Gui/BitmapFactory.h>
@@ -20,10 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QString>
#endif
#include <Gui/Application.h>
#include <Gui/BitmapFactory.h>
@@ -21,11 +21,6 @@
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#endif
#include "TaskSketcherTool.h"
#include <Gui/Application.h>
#include <Gui/Document.h>
@@ -20,8 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <Precision.hxx>
#include <QDoubleValidator>
#include <QLocale>
@@ -34,7 +32,6 @@
#include <Inventor/nodes/SoDrawStyle.h>
#include <Inventor/nodes/SoMarkerSet.h>
#include <Inventor/nodes/SoSeparator.h>
#endif
#include <App/Document.h>
#include <Gui/Application.h>
-4
View File
@@ -20,13 +20,9 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <QCursor>
#include <QLocale>
#include <QRegularExpression>
#endif
#include <App/Application.h>
#include <Base/Quantity.h>
+1 -3
View File
@@ -20,10 +20,8 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <Inventor/nodes/SoSeparator.h>
#endif
#include <Gui/ViewProviderBuilder.h>
@@ -20,8 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <boost/core/ignore_unused.hpp>
#include <Inventor/SbBox3f.h>
#include <Inventor/SbLine.h>
@@ -41,7 +39,6 @@
#include <QWindow>
#include <limits>
#endif
#include <fmt/format.h>
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include "ViewProviderSketchCoinAttorney.h"
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <Base/Exception.h>
#include <Base/Reader.h>
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include "ViewProviderSketchGeometryExtensionPy.h"
-1
View File
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include <Base/Reader.h>
#include <Base/Writer.h>
-1
View File
@@ -20,7 +20,6 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#include "Utils.h"
#include "Workbench.h"