comment the notes() and preamble() in gcodewriter

This commit is contained in:
Joseph Lenox 2017-06-03 19:58:31 -05:00
parent 375b334ad8
commit c36fadd297

View File

@ -23,7 +23,10 @@ public:
std::string extrusion_axis() const { return this->_extrusion_axis; } std::string extrusion_axis() const { return this->_extrusion_axis; }
void apply_print_config(const PrintConfig &print_config); void apply_print_config(const PrintConfig &print_config);
void set_extruders(const std::vector<unsigned int> &extruder_ids); void set_extruders(const std::vector<unsigned int> &extruder_ids);
/// Write any notes provided by the user as comments in the gcode header.
std::string notes(); std::string notes();
/// Actually write the preamble information.
std::string preamble(); std::string preamble();
std::string postamble() const; std::string postamble() const;
std::string set_temperature(unsigned int temperature, bool wait = false, int tool = -1) const; std::string set_temperature(unsigned int temperature, bool wait = false, int tool = -1) const;