1 // SWIG file 2 3 %{ 4 #include "openturns/SpaceFillingImplementation.hxx" 5 %} 6 7 %include SpaceFillingImplementation_doc.i 8 9 %template(SpaceFillingImplementationdInterfaceObject) OT::TypedInterfaceObject<OT::SpaceFillingImplementation>; 10 11 %include openturns/SpaceFillingImplementation.hxx SpaceFillingImplementation(const SpaceFillingImplementation & other)12namespace OT { %extend SpaceFillingImplementation { SpaceFillingImplementation(const SpaceFillingImplementation & other) { return new OT::SpaceFillingImplementation(other); } } } 13