Files
OrcaSlicer-bambulab/xs/xsp/Utils_PrintHost.xsp
T

13 lines
243 B
Plaintext
Raw Normal View History

2018-07-08 14:32:48 +02: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 11:10:32 +02:00
static PrintHost* get_print_host(DynamicPrintConfig *config);
2018-07-08 14:32:48 +02:00
};