2018-03-28 09:36:36 +00:00
|
|
|
%module{Slic3r::XS};
|
|
|
|
|
|
|
|
%{
|
|
|
|
#include <xsinit.h>
|
|
|
|
#include "slic3r/Utils/PresetUpdater.hpp"
|
|
|
|
%}
|
|
|
|
|
|
|
|
%name{Slic3r::PresetUpdater} class PresetUpdater {
|
|
|
|
PresetUpdater(int version_online_event, AppConfig *app_config);
|
2018-04-13 13:08:58 +00:00
|
|
|
void sync(AppConfig *app_config, PresetBundle* preset_bundle);
|
|
|
|
void config_update(AppConfig *app_config);
|
2018-03-28 09:36:36 +00:00
|
|
|
};
|