Fix includes

This commit is contained in:
Martin Šach 2024-09-13 11:46:48 +02:00 committed by Lukáš Matěna
parent 277cf9833c
commit 2cac8c2c37
12 changed files with 16 additions and 14 deletions

View File

@ -25,6 +25,7 @@ class ExtrusionEntityReference;
class Print;
class PrintObject;
class PrintRegion;
namespace GCode {
class WipeTowerIntegration;
} // namespace GCode

View File

@ -8,7 +8,6 @@
#include <cstring>
#include <algorithm>
#include <array>
#include <iosfwd>
#include <iterator>
#include <limits>
#include <cctype>

View File

@ -3,6 +3,7 @@
#include <cstdint>
#include <iterator>
#include <tuple>
#include <limits>
#include "libslic3r/ClipperUtils.hpp"
#include "libslic3r/Layer.hpp"

View File

@ -28,7 +28,6 @@
#include "SVG.hpp"
#include "Algorithm/RegionExpansion.hpp"
#include "libslic3r/ExtrusionEntity.hpp"
#include "libslic3r/LayerRegion.hpp"
#include "libslic3r/Line.hpp"
#include "libslic3r/MultiMaterialSegmentation.hpp"
#include "libslic3r/Point.hpp"

View File

@ -34,7 +34,6 @@
#include "libslic3r/LayerRegion.hpp"
#include "libslic3r/Line.hpp"
#include "libslic3r/Model.hpp"
#include "libslic3r/MultiMaterialSegmentation.hpp"
#include "libslic3r/Point.hpp"
#include "libslic3r/Polygon.hpp"
#include "libslic3r/PrintConfig.hpp"

View File

@ -34,7 +34,6 @@
#include "Flow.hpp"
#include "libslic3r/GCode/ExtrusionProcessor.hpp"
#include "Line.hpp"
#include "Point.hpp"
#include "Polygon.hpp"
#include "Polyline.hpp"
#include "Print.hpp"

View File

@ -27,12 +27,12 @@
#include <wx/display.h> // detection of change DPI
#include <boost/log/trivial.hpp>
#include <boost/nowide/fstream.hpp>
#include <GL/glew.h>
#include <chrono> // measure enumeration of fonts
#include <sstream> // save for svg
#include <array>
#include <fstream> // IWYU pragma: keep
using namespace Slic3r;
using namespace Slic3r::Emboss;

View File

@ -12,6 +12,7 @@
#include <boost/log/trivial.hpp>
#include <boost/filesystem/fstream.hpp>
#include <boost/nowide/fstream.hpp> // IWYU pragma: keep
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
#include <boost/uuid/uuid.hpp>
@ -916,4 +917,4 @@ void PresetArchiveDatabase::sync_blocking()
read_server_manifest(std::move(manifest));
}
}} // Slic3r::GUI
}} // Slic3r::GUI

View File

@ -1,11 +1,13 @@
#include "UserAccountUtils.hpp"
#include "format.hpp"
#include <boost/regex.hpp>
#include <boost/property_tree/json_parser.hpp>
#include <boost/log/trivial.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/lexical_cast/bad_lexical_cast.hpp>
#include <cassert>
#include <cstddef>
#include <exception>
#include <utility>
namespace pt = boost::property_tree;

View File

@ -1,5 +1,4 @@
#include <webkit2/webkit2.h>
#include <wx/defs.h>
#include <wx/webview.h>
#include <unordered_map>
#include <string>

View File

@ -18,6 +18,7 @@
#include <boost/filesystem.hpp>
#include <boost/format.hpp>
#include <boost/log/trivial.hpp>
#include <boost/nowide/fstream.hpp>
#include <curl/curl.h>

View File

@ -1,12 +1,13 @@
#include "Jwt.hpp"
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
#include <boost/beast/core/detail/base64.hpp> // IWYU pragma: keep
#include <boost/optional/optional.hpp>
#include <ctime>
#include <sstream>
#include <tuple>
#include <boost/beast/core/detail/base64.hpp>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
#include <algorithm>
namespace Slic3r::Utils {