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