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/GLCanvas3DManager.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/GLCanvas3DManager.hpp')
-rw-r--r--src/slic3r/GUI/GLCanvas3DManager.hpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/slic3r/GUI/GLCanvas3DManager.hpp b/src/slic3r/GUI/GLCanvas3DManager.hpp
index e03f780c8..343250ccd 100644
--- a/src/slic3r/GUI/GLCanvas3DManager.hpp
+++ b/src/slic3r/GUI/GLCanvas3DManager.hpp
@@ -12,9 +12,8 @@ class wxGLContext;
namespace Slic3r {
+class BackgroundSlicingProcess;
class DynamicPrintConfig;
-class Print;
-class SLAPrint;
class Model;
class ExPolygon;
typedef std::vector<ExPolygon> ExPolygons;
@@ -93,8 +92,7 @@ public:
GLCanvas3D* get_canvas(wxGLCanvas* canvas);
void set_config(wxGLCanvas* canvas, DynamicPrintConfig* config);
- void set_print(wxGLCanvas* canvas, Print* print);
- void set_SLA_print(wxGLCanvas* canvas, SLAPrint* print);
+ void set_process(wxGLCanvas* canvas, BackgroundSlicingProcess* process);
void set_model(wxGLCanvas* canvas, Model* model);
void set_bed_shape(wxGLCanvas* canvas, const Pointfs& shape);