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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'xs/src/libslic3r/GCode.hpp')
-rw-r--r--xs/src/libslic3r/GCode.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/xs/src/libslic3r/GCode.hpp b/xs/src/libslic3r/GCode.hpp
index 51ab5eb84..ac0af3f2c 100644
--- a/xs/src/libslic3r/GCode.hpp
+++ b/xs/src/libslic3r/GCode.hpp
@@ -126,7 +126,7 @@ public:
{}
~GCode() {}
- bool do_export(FILE *file, Print &print);
+ bool do_export(Print *print, const char *path);
// Exported for the helper classes (OozePrevention, Wipe) and for the Perl binding for unit tests.
const Pointf& origin() const { return m_origin; }
@@ -146,6 +146,8 @@ public:
void apply_print_config(const PrintConfig &print_config);
protected:
+ bool _do_export(Print &print, FILE *file);
+
// Object and support extrusions of the same PrintObject at the same print_z.
struct LayerToPrint
{