2018-07-08 12:32:48 +00:00
|
|
|
%module{Slic3r::XS};
|
|
|
|
|
|
|
|
%{
|
|
|
|
#include <xsinit.h>
|
|
|
|
#include "slic3r/Utils/PrintHost.hpp"
|
|
|
|
%}
|
|
|
|
|
|
|
|
%name{Slic3r::PrintHost} class PrintHost {
|
|
|
|
bool send_gcode(std::string filename) const;
|
2018-08-21 09:10:32 +00:00
|
|
|
|
|
|
|
static PrintHost* get_print_host(DynamicPrintConfig *config);
|
2018-07-08 12:32:48 +00:00
|
|
|
};
|