OrcaSlicer/xs/src/libslic3r/Format/AMF.hpp
bubnikv 25dfe7278c Initial rewrite of the file accessors from Perl to C++.
This is especially important for the extremely slow AMF parser.
Also there is a new file handler for the Prusa Control 'PRUS' format.
2017-02-26 21:46:33 +01:00

15 lines
No EOL
310 B
C++

#ifndef slic3r_Format_AMF_hpp_
#define slic3r_Format_AMF_hpp_
namespace Slic3r {
class Model;
// Load an AMF file into a provided model.
extern bool load_amf(const char *path, Model *model);
extern bool store_amf(const char *path, Model *model);
}; // namespace Slic3r
#endif /* slic3r_Format_AMF_hpp_ */