11 lines
179 B
Plaintext
11 lines
179 B
Plaintext
|
%module{Slic3r::XS};
|
||
|
|
||
|
%{
|
||
|
#include <xsinit.h>
|
||
|
#include "slic3r/Utils/PrintHost.hpp"
|
||
|
%}
|
||
|
|
||
|
%name{Slic3r::PrintHost} class PrintHost {
|
||
|
bool send_gcode(std::string filename) const;
|
||
|
};
|