Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2018-11-22 17:29:59 +0300
committerbubnikv <bubnikv@gmail.com>2018-11-22 17:29:59 +0300
commitbde4153d4474bbde50da1f202ab38cf875ac197a (patch)
treece407343ccc69d334ce48d72e24bd81508b2e6ef /src/slic3r/GUI/GUI.hpp
parent86c11df5540a9b0b4384eb791578ac7f203bd814 (diff)
Removed legacy GUI Perl bindings,
replaced Print & SLAPrint pointers with BackgroundProcessing pointer at the GLCanvas3D level, so that the Print & SLAPrint access will be synchronized with the current printer technology.
Diffstat (limited to 'src/slic3r/GUI/GUI.hpp')
-rw-r--r--src/slic3r/GUI/GUI.hpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/slic3r/GUI/GUI.hpp b/src/slic3r/GUI/GUI.hpp
index cbc20c3c1..66c84f8a1 100644
--- a/src/slic3r/GUI/GUI.hpp
+++ b/src/slic3r/GUI/GUI.hpp
@@ -17,7 +17,6 @@ namespace Slic3r {
class AppConfig;
class DynamicPrintConfig;
-class PreviewIface;
class Print;
class GCodePreviewData;
class AppControllerBase;
@@ -70,8 +69,6 @@ extern bool config_wizard_startup(bool app_config_exists);
// The run_reason argument is actually ConfigWizard::RunReason, but int is used here because of Perl.
extern void config_wizard(int run_reason);
-PreviewIface* create_preview_iface(wxNotebook* notebook, DynamicPrintConfig* config, Print* print, GCodePreviewData* gcode_preview_data);
-
// Change option value in config
void change_opt_value(DynamicPrintConfig& config, const t_config_option_key& opt_key, const boost::any& value, int opt_index = 0);