Files

18 lines
344 B
C++
Raw Permalink Normal View History

2023-05-18 07:24:05 +03:00
#pragma once
#include <string>
#include "gcode_commands.h"
namespace grbl {
struct grbl_file {
grbl_file() = default;
grbl_file(std::vector<grbl::command *> commands);
static grbl_file load(std::string path);
std::vector<std::string> get_gcode();
std::vector<grbl::command *> commands;
};
}