Cooling buffer - fix of Perl bindings
This commit is contained in:
parent
31bc52a5cb
commit
ce8986348c
1 changed files with 5 additions and 1 deletions
|
@ -11,7 +11,11 @@
|
|||
%code{% RETVAL = new CoolingBuffer(*gcode); %};
|
||||
~CoolingBuffer();
|
||||
Ref<GCode> gcodegen();
|
||||
std::string process_layer(std::string gcode, size_t layer_id, bool fush = true);
|
||||
void process_layer(std::string gcode, size_t layer_id)
|
||||
%code{%
|
||||
THIS->process_layer(std::move(gcode), layer_id);
|
||||
%};
|
||||
|
||||
};
|
||||
|
||||
%name{Slic3r::GCode} class GCode {
|
||||
|
|
Loading…
Reference in a new issue