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

github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ArcWelderInverseProcessor/arc_interpolation.cpp')
-rw-r--r--ArcWelderInverseProcessor/arc_interpolation.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/ArcWelderInverseProcessor/arc_interpolation.cpp b/ArcWelderInverseProcessor/arc_interpolation.cpp
index c5cde1a..feb045b 100644
--- a/ArcWelderInverseProcessor/arc_interpolation.cpp
+++ b/ArcWelderInverseProcessor/arc_interpolation.cpp
@@ -152,6 +152,8 @@ void arc_interpolation::process()
{
if (output_file_.is_open())
{
+ // Add the gcode file header
+ output_file_ << p_current_firmware_->get_gcode_header_comment()<<"\n";
parsed_command cmd;
// Communicate every second
while (std::getline(gcode_file, line))
@@ -273,7 +275,7 @@ void arc_interpolation::process()
std::cout << stream.str();
}
-std::string arc_interpolation::get_firmware_argument_description() const
+std::string arc_interpolation::get_firmware_arguments_description(std::string separator, std::string argument_prefix, std::string replacement_string, std::string replacement_value) const
{
- return p_current_firmware_->get_argument_description();
+ return p_current_firmware_->get_arguments_description(separator, argument_prefix, replacement_string, replacement_value);
} \ No newline at end of file