mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-16 20:32:43 -07:00
14 lines
264 B
Plaintext
14 lines
264 B
Plaintext
%module{Slic3r::XS};
|
|
|
|
%{
|
|
#include <xsinit.h>
|
|
#include "slic3r/Utils/OctoPrint.hpp"
|
|
%}
|
|
|
|
%name{Slic3r::OctoPrint} class OctoPrint {
|
|
OctoPrint(DynamicPrintConfig *config);
|
|
~OctoPrint();
|
|
|
|
bool send_gcode(std::string filename, bool print = false) const;
|
|
};
|