dwww Home | Show directory contents | Find package

// Test swig_runtime_data with and without -builtin

%module python_runtime_data_builtin

%inline %{
#ifdef SWIGPYTHON_BUILTIN
bool is_python_builtin() { return true; }
#else
bool is_python_builtin() { return false; }
#endif
%}

%include std_vector.i

%template(vectord) std::vector<double>;

Generated by dwww version 1.15 on Tue Jul 2 00:25:17 CEST 2024.