State.pm 373 B

123456789101112
  1. # Wraps C++ enums Slic3r::PrintStep and Slic3r::PrintObjectStep
  2. package Slic3r::Print::State;
  3. use strict;
  4. use warnings;
  5. require Exporter;
  6. our @ISA = qw(Exporter);
  7. our @EXPORT_OK = qw(STEP_SLICE STEP_PERIMETERS STEP_PREPARE_INFILL
  8. STEP_INFILL STEP_SUPPORTMATERIAL STEP_SKIRT STEP_BRIM STEP_WIPE_TOWER);
  9. our %EXPORT_TAGS = (steps => \@EXPORT_OK);
  10. 1;