mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-02 12:30:40 +08:00
14 lines
244 B
Plaintext
14 lines
244 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) const;
|
|
};
|