Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Utils_PresetUpdater.xsp « xsp « xs - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc874acabe2027c834469f2d6d46171510eaf3aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%module{Slic3r::XS};

%{
#include <xsinit.h>
#include "slic3r/Utils/PresetUpdater.hpp"
%}

%name{Slic3r::PresetUpdater} class PresetUpdater {
    PresetUpdater(int version_online_event);
    void sync(PresetBundle* preset_bundle);
    void slic3r_update_notify();
    bool config_update();
};