GCodeTimeEstimator.xsp 318 B

123456789101112131415
  1. %module{Slic3r::XS};
  2. %{
  3. #include <xsinit.h>
  4. #include "libslic3r/GCodeTimeEstimator.hpp"
  5. %}
  6. %name{Slic3r::GCode::TimeEstimator} class GCodeTimeEstimator {
  7. GCodeTimeEstimator();
  8. ~GCodeTimeEstimator();
  9. float time %get{time};
  10. void parse(std::string gcode);
  11. void parse_file(std::string file);
  12. };