mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-31 02:52:00 +08:00
Fix includes
This commit is contained in:
parent
277cf9833c
commit
2cac8c2c37
@ -25,6 +25,7 @@ class ExtrusionEntityReference;
|
||||
class Print;
|
||||
class PrintObject;
|
||||
class PrintRegion;
|
||||
|
||||
namespace GCode {
|
||||
class WipeTowerIntegration;
|
||||
} // namespace GCode
|
||||
|
@ -8,7 +8,6 @@
|
||||
#include <cstring>
|
||||
#include <algorithm>
|
||||
#include <array>
|
||||
#include <iosfwd>
|
||||
#include <iterator>
|
||||
#include <limits>
|
||||
#include <cctype>
|
||||
|
@ -3,6 +3,7 @@
|
||||
#include <cstdint>
|
||||
#include <iterator>
|
||||
#include <tuple>
|
||||
#include <limits>
|
||||
|
||||
#include "libslic3r/ClipperUtils.hpp"
|
||||
#include "libslic3r/Layer.hpp"
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include <webkit2/webkit2.h>
|
||||
#include <wx/defs.h>
|
||||
#include <wx/webview.h>
|
||||
#include <unordered_map>
|
||||
#include <string>
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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 {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user