From c36fadd29793bb0d2187c2985e0c45155bdaf549 Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Sat, 3 Jun 2017 19:58:31 -0500 Subject: [PATCH] comment the notes() and preamble() in gcodewriter --- xs/src/libslic3r/GCodeWriter.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xs/src/libslic3r/GCodeWriter.hpp b/xs/src/libslic3r/GCodeWriter.hpp index e9eff2e05a..50c325dd4c 100644 --- a/xs/src/libslic3r/GCodeWriter.hpp +++ b/xs/src/libslic3r/GCodeWriter.hpp @@ -23,7 +23,10 @@ public: std::string extrusion_axis() const { return this->_extrusion_axis; } void apply_print_config(const PrintConfig &print_config); void set_extruders(const std::vector &extruder_ids); + /// Write any notes provided by the user as comments in the gcode header. std::string notes(); + + /// Actually write the preamble information. std::string preamble(); std::string postamble() const; std::string set_temperature(unsigned int temperature, bool wait = false, int tool = -1) const;