mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-07-04 16:34:29 +03:00
13 lines
301 B
C++
13 lines
301 B
C++
#ifndef slic3r_Format_3mf_hpp_
|
|
#define slic3r_Format_3mf_hpp_
|
|
|
|
namespace Slic3r {
|
|
|
|
class Model;
|
|
|
|
// Load an 3mf file into a provided model.
|
|
extern bool load_3mf(const char* path, Model* model, const char* object_name = nullptr);
|
|
}; // namespace Slic3r
|
|
|
|
#endif /* slic3r_Format_3mf_hpp_ */
|