Added missing includes (GCC11.1 without PCH).

This commit is contained in:
Lukáš Hejl 2022-03-24 09:33:26 +01:00
parent 24bcbd9c0c
commit eae3932550
4 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,7 @@
#include <boost/algorithm/string.hpp> #include <boost/algorithm/string.hpp>
#include <boost/algorithm/string/predicate.hpp> #include <boost/algorithm/string/predicate.hpp>
#include <boost/any.hpp> #include <boost/any.hpp>
#include <boost/filesystem.hpp>
#if __APPLE__ #if __APPLE__
#import <IOKit/pwr_mgt/IOPMLib.h> #import <IOKit/pwr_mgt/IOPMLib.h>

View File

@ -13,6 +13,7 @@ class wxWindow;
class wxMenuBar; class wxMenuBar;
class wxComboCtrl; class wxComboCtrl;
class wxFileDialog; class wxFileDialog;
class wxArrayString;
class wxTopLevelWindow; class wxTopLevelWindow;
namespace Slic3r { namespace Slic3r {

View File

@ -3,6 +3,7 @@
#include <cstring> #include <cstring>
#include <boost/format.hpp> #include <boost/format.hpp>
#include <boost/algorithm/string/predicate.hpp> #include <boost/algorithm/string/predicate.hpp>
#include <boost/nowide/convert.hpp>
#include <wx/settings.h> #include <wx/settings.h>
#include <wx/sizer.h> #include <wx/sizer.h>

View File

@ -6,6 +6,8 @@
#include <vector> #include <vector>
#include <wx/hyperlink.h> #include <wx/hyperlink.h>
#include <boost/filesystem.hpp>
#include "libslic3r/Semver.hpp" #include "libslic3r/Semver.hpp"
#include "MsgDialog.hpp" #include "MsgDialog.hpp"