2023-06-10 10:14:12 +08:00
|
|
|
#ifndef slic3r_Format_AMF_hpp_
|
|
|
|
|
#define slic3r_Format_AMF_hpp_
|
|
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
|
|
class Model;
|
|
|
|
|
class DynamicPrintConfig;
|
|
|
|
|
|
|
|
|
|
// Load the content of an amf file into the given model and configuration.
|
|
|
|
|
extern bool load_amf(const char* path, DynamicPrintConfig* config, ConfigSubstitutionContext* config_substitutions, Model* model, bool check_version);
|
|
|
|
|
|
2025-02-08 16:06:54 +08:00
|
|
|
// The option has been missing in the UI since 2.4.0 (except for CLI).
|
2023-06-10 10:14:12 +08:00
|
|
|
|
|
|
|
|
} // namespace Slic3r
|
|
|
|
|
|
|
|
|
|
#endif /* slic3r_Format_AMF_hpp_ */
|