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:
Diffstat (limited to 'src/libslic3r/SLAPrint.hpp')
-rw-r--r--src/libslic3r/SLAPrint.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libslic3r/SLAPrint.hpp b/src/libslic3r/SLAPrint.hpp
index 07c622923..afe4aeac7 100644
--- a/src/libslic3r/SLAPrint.hpp
+++ b/src/libslic3r/SLAPrint.hpp
@@ -503,6 +503,7 @@ public:
const std::vector<PrintLayer>& print_layers() const { return m_printer_input; }
void set_printer(SLAPrinter *archiver);
+ void set_printer(std::shared_ptr<SLAPrinter> archiver);
private:
@@ -525,6 +526,7 @@ private:
// The archive object which collects the raster images after slicing
SLAPrinter *m_printer = nullptr;
+ std::shared_ptr<SLAPrinter> m_printer_ref;
// Estimated print time, material consumed.
SLAPrintStatistics m_print_statistics;