16 lines
210 B
Text
16 lines
210 B
Text
![]() |
%module{Slic3r::XS};
|
||
|
|
||
|
%{
|
||
|
#include <myinit.h>
|
||
|
#include "Config.hpp"
|
||
|
%}
|
||
|
|
||
|
%name{Slic3r::Config} class DynamicConfig {
|
||
|
DynamicConfig();
|
||
|
~DynamicConfig();
|
||
|
SV* get(t_config_option_key opt_key);
|
||
|
%{
|
||
|
|
||
|
%}
|
||
|
};
|