mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-13 04:32:07 +08:00

ported execution of post processing scripts into C++ (WIP, waits for update of boost::system module on our build server) Removed other mention of the "Controller".
16 lines
336 B
C++
16 lines
336 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 PrintConfig &config);
|
|
|
|
} // namespace Slic3r
|
|
|
|
#endif /* slic3r_GCode_PostProcessor_hpp_ */
|