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 'xs/src/libslic3r/GCode.cpp')
-rw-r--r--xs/src/libslic3r/GCode.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/xs/src/libslic3r/GCode.cpp b/xs/src/libslic3r/GCode.cpp
index 8f4f98260..f94784450 100644
--- a/xs/src/libslic3r/GCode.cpp
+++ b/xs/src/libslic3r/GCode.cpp
@@ -65,10 +65,6 @@ AvoidCrossingPerimeters::travel_to(GCode &gcodegen, Point point)
}
}
-#ifdef SLIC3RXS
-REGISTER_CLASS(AvoidCrossingPerimeters, "GCode::AvoidCrossingPerimeters");
-#endif
-
OozePrevention::OozePrevention()
: enable(false)
{
@@ -125,10 +121,6 @@ OozePrevention::_get_temp(GCode &gcodegen)
: gcodegen.config.temperature.get_at(gcodegen.writer.extruder()->id);
}
-#ifdef SLIC3RXS
-REGISTER_CLASS(OozePrevention, "GCode::OozePrevention");
-#endif
-
Wipe::Wipe()
: enable(false)
{
@@ -202,10 +194,6 @@ Wipe::wipe(GCode &gcodegen, bool toolchange)
return gcode;
}
-#ifdef SLIC3RXS
-REGISTER_CLASS(Wipe, "GCode::Wipe");
-#endif
-
#define EXTRUDER_CONFIG(OPT) this->config.OPT.get_at(this->writer.extruder()->id)
GCode::GCode()
@@ -766,8 +754,4 @@ GCode::point_to_gcode(const Point &point)
);
}
-#ifdef SLIC3RXS
-REGISTER_CLASS(GCode, "GCode");
-#endif
-
}