13 lines
243 B
Plaintext
13 lines
243 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;
|
|
|
|
static PrintHost* get_print_host(DynamicPrintConfig *config);
|
|
};
|