b0840065ed
* Octoprint progress dialog * Fix curl version on Windows
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;
|
|
};
|