dwww Home | Show directory contents | Find package

/* File : example.i */
%module python_destructor_exception
%include exception.i

%exception ClassWithThrowingDestructor::~ClassWithThrowingDestructor()
{
  $action
  SWIG_exception(SWIG_RuntimeError, "I am the ClassWithThrowingDestructor dtor doing bad things");
}

%inline %{
class ClassWithThrowingDestructor
{
};

%}

%include <std_vector.i>
%template(VectorInt) std::vector<int>;

Generated by dwww version 1.15 on Tue Jul 2 00:31:46 CEST 2024.