Slic3r/xs/xsp/typemap.xspt

49 lines
1.1 KiB
Plaintext
Raw Normal View History

%typemap{bool}{simple};
2013-06-23 17:33:07 +04:00
%typemap{std::string};
2013-12-20 19:37:28 +04:00
%typemap{t_config_option_key};
%typemap{std::vector<unsigned int>*};
2013-09-10 01:38:49 +04:00
%typemap{std::vector<double>};
2013-09-07 16:06:09 +04:00
%typemap{std::vector<double>*};
%typemap{std::vector<std::string>};
%typemap{SV*};
%typemap{AV*};
2013-07-14 15:05:55 +04:00
%typemap{Point*};
%typemap{DynamicPrintConfig*};
%typemap{PrintConfig*};
2013-07-14 15:05:55 +04:00
%typemap{ExPolygon*};
%typemap{ExPolygonCollection*};
2013-11-21 18:12:06 +04:00
%typemap{Line*};
%typemap{Polyline*};
%typemap{Polygon*};
2013-07-18 21:09:07 +04:00
%typemap{ExtrusionEntityCollection*};
%typemap{ExtrusionPath*};
%typemap{ExtrusionLoop*};
%typemap{Points};
2013-07-16 01:12:13 +04:00
%typemap{Lines};
%typemap{Polygons};
2013-11-21 17:15:38 +04:00
%typemap{Polylines};
2013-12-20 04:36:42 +04:00
%typemap{PrintState};
%typemap{ExPolygons};
2013-11-23 21:29:25 +04:00
%typemap{Surfaces};
%typemap{Polygons*};
%typemap{TriangleMeshPtrs};
2013-07-16 01:12:13 +04:00
2013-07-14 15:05:55 +04:00
%typemap{SurfaceType}{parsed}{
%cpp_type{SurfaceType};
%precall_code{%
$CVar = (SurfaceType)SvUV($PerlVar);
%};
};
%typemap{ExtrusionRole}{parsed}{
%cpp_type{ExtrusionRole};
%precall_code{%
$CVar = (ExtrusionRole)SvUV($PerlVar);
%};
};
2013-12-20 04:36:42 +04:00
%typemap{PrintStep}{parsed}{
%cpp_type{PrintStep};
%precall_code{%
$CVar = (PrintStep)SvUV($PerlVar);
%};
};