#pragma once #include #include "gcode_commands.h" namespace grbl { struct grbl_file { grbl_file() = default; grbl_file(std::vector commands); static grbl_file load(std::string path); std::vector get_gcode(); std::vector commands; }; }