mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-13 05:21:47 +08:00
16 lines
343 B
C++
16 lines
343 B
C++
#ifndef slic3r_GCode_PostProcessor_hpp_
|
|
#define slic3r_GCode_PostProcessor_hpp_
|
|
|
|
#include <string>
|
|
|
|
#include "../libslic3r.h"
|
|
#include "../PrintConfig.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
extern void run_post_process_scripts(const std::string &path, const DynamicPrintConfig &config);
|
|
|
|
} // namespace Slic3r
|
|
|
|
#endif /* slic3r_GCode_PostProcessor_hpp_ */
|