2018-03-28 11:36:36 +02:00
|
|
|
%module{Slic3r::XS};
|
|
|
|
|
|
|
|
%{
|
|
|
|
#include <xsinit.h>
|
|
|
|
#include "slic3r/Utils/PresetUpdater.hpp"
|
|
|
|
%}
|
|
|
|
|
|
|
|
%name{Slic3r::PresetUpdater} class PresetUpdater {
|
2018-04-17 16:59:53 +02:00
|
|
|
PresetUpdater(int version_online_event);
|
|
|
|
void sync(PresetBundle* preset_bundle);
|
|
|
|
void slic3r_update_notify();
|
2018-04-24 18:06:42 +02:00
|
|
|
bool config_update();
|
2018-03-28 11:36:36 +02:00
|
|
|
};
|