mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-18 09:29:05 -07:00
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);
|
|
};
|