mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-23 18:59:21 -07:00
Further changes: - Added new configuration option Host Type - Added abstract base class for future printer hosts - Moved location of upload dialog (also made it a little bit more configureable) - added possibility to send file via postfield instead a new frame
14 lines
270 B
Plaintext
14 lines
270 B
Plaintext
%module{Slic3r::XS};
|
|
|
|
%{
|
|
#include <xsinit.h>
|
|
#include "slic3r/Utils/PrintHostFactory.hpp"
|
|
%}
|
|
|
|
%name{Slic3r::PrintHostFactory} class PrintHostFactory {
|
|
PrintHostFactory();
|
|
~PrintHostFactory();
|
|
|
|
static PrintHost * get_print_host(DynamicPrintConfig *config);
|
|
};
|