// Original implementation of STEP format import created by Bambulab. // https://github.com/bambulab/BambuStudio // Forked off commit 1555904, modified by Prusa Research. #ifndef slic3r_Format_STEP_hpp_ #define slic3r_Format_STEP_hpp_ namespace Slic3r { class Model; //typedef std::function ImportStepProgressFn; // Load a step file into a provided model. extern bool load_step(const char *path_str, Model *model /*LMBBS:, ImportStepProgressFn proFn = nullptr*/); }; // namespace Slic3r #endif /* slic3r_Format_STEP_hpp_ */