├── .github └── workflows │ ├── ci.yml │ └── nuget.yml ├── ANNOUNCE ├── CCache ├── COPYING ├── Makefile.in ├── README ├── README.swig ├── args.c ├── ccache.c ├── ccache.h ├── ccache.yo ├── ccache_swig_config.h.in ├── cleanup.c ├── config_win32.h.in ├── configure.ac ├── debian │ ├── NEWS │ ├── README.Debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── dirs │ ├── docs │ ├── examples │ ├── patches │ │ ├── 01_no_home.diff │ │ ├── 02_ccache-compressed.diff │ │ ├── 03_long_options.diff │ │ ├── 04_ignore_profile.diff │ │ ├── 05_nfs_fix.diff │ │ ├── 06_md.diff │ │ ├── 07_cachedirtag.diff │ │ ├── 08_manpage_hyphens.diff │ │ ├── 09_respect_ldflags.diff │ │ ├── 10_lru_cleanup.diff │ │ ├── 11_utimes.diff │ │ ├── 12_cachesize_permissions.diff │ │ ├── 13_html_links.diff │ │ ├── 14_hardlink_doc.diff │ │ └── CREDITS │ ├── rules │ ├── update-ccache │ └── watch ├── execute.c ├── hash.c ├── install-sh ├── mdfour.c ├── mdfour.h ├── packaging │ ├── README │ └── ccache.spec ├── snprintf.c ├── stats.c ├── test.sh ├── unify.c ├── util.c └── web │ └── index.html ├── CHANGES ├── CHANGES.current ├── CMakeLists.txt ├── COPYRIGHT ├── Doc ├── Devel │ ├── cmdopt.html │ ├── engineering.html │ ├── file.html │ ├── index.html │ ├── internals.html │ ├── migrate.txt │ ├── parm.html │ ├── plan-gsoc-2012.txt │ ├── runtime.txt │ ├── scanner.html │ ├── tree.html │ └── wrapobj.html ├── Manual │ ├── Android.html │ ├── Arguments.html │ ├── CCache.html │ ├── CPlusPlus11.html │ ├── CPlusPlus14.html │ ├── CPlusPlus17.html │ ├── CPlusPlus20.html │ ├── CSharp.html │ ├── Contents.html │ ├── Contract.html │ ├── Customization.html │ ├── D.html │ ├── Doxygen.html │ ├── Extending.html │ ├── Fortran.html │ ├── Go.html │ ├── Guile.html │ ├── Introduction.html │ ├── Java.html │ ├── Javascript.html │ ├── Library.html │ ├── Lua.html │ ├── Makefile │ ├── Modules.html │ ├── Mzscheme.html │ ├── Ocaml.html │ ├── Octave.html │ ├── Perl5.html │ ├── Php.html │ ├── Preface.html │ ├── Preprocessor.html │ ├── Python.html │ ├── R.html │ ├── README │ ├── Ruby.html │ ├── SWIG.html │ ├── SWIGPlus.html │ ├── Scilab.html │ ├── Scripting.html │ ├── Sections.html │ ├── Tcl.html │ ├── Typemaps.html │ ├── Varargs.html │ ├── Warnings.html │ ├── Windows.html │ ├── android-class.png │ ├── android-simple.png │ ├── ch2.1.png │ ├── chapters │ ├── fixstyle.py │ ├── fortran-data.png │ ├── index.html │ ├── linkchecker.config │ ├── makechap.py │ ├── maketoc.py │ ├── src │ │ ├── Fortran.md │ │ ├── README.md │ │ ├── pandoc2swigman.py │ │ ├── regenerate.sh │ │ └── style.css │ ├── style.css │ └── swig16.png └── README ├── Examples ├── Makefile.in ├── README ├── android │ ├── check.list │ ├── class │ │ ├── AndroidManifest.xml │ │ ├── Makefile │ │ ├── ant.properties │ │ ├── build.xml │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── example.cpp │ │ │ ├── example.h │ │ │ └── example.i │ │ ├── local.properties │ │ ├── proguard.cfg │ │ ├── project.properties │ │ ├── res │ │ │ ├── layout │ │ │ │ └── main.xml │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── org │ │ │ └── swig │ │ │ └── classexample │ │ │ └── SwigClass.java │ ├── extend │ │ ├── AndroidManifest.xml │ │ ├── Makefile │ │ ├── ant.properties │ │ ├── build.xml │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ ├── example.cpp │ │ │ ├── example.h │ │ │ └── example.i │ │ ├── local.properties │ │ ├── proguard.cfg │ │ ├── project.properties │ │ ├── res │ │ │ ├── layout │ │ │ │ └── main.xml │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── org │ │ │ └── swig │ │ │ └── extendexample │ │ │ └── SwigExtend.java │ └── simple │ │ ├── AndroidManifest.xml │ │ ├── Makefile │ │ ├── ant.properties │ │ ├── build.xml │ │ ├── jni │ │ ├── Android.mk │ │ ├── example.c │ │ └── example.i │ │ ├── local.properties │ │ ├── proguard.cfg │ │ ├── project.properties │ │ ├── res │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ │ └── src │ │ └── org │ │ └── swig │ │ └── simple │ │ └── SwigSimple.java ├── csharp │ ├── arrays │ │ ├── Makefile │ │ ├── example-cs.csproj │ │ ├── example-vc.vcproj │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── example.sln │ │ └── runme.cs │ ├── callback │ │ ├── Makefile │ │ ├── example-cs.csproj │ │ ├── example-vc.vcproj │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example.sln │ │ └── runme.cs │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example-cs.csproj │ │ ├── example-vc.vcproj │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example.sln │ │ └── runme.cs │ ├── enum │ │ ├── Makefile │ │ ├── example-cs.csproj │ │ ├── example-vc.vcproj │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example.sln │ │ └── runme.cs │ ├── extend │ │ ├── Makefile │ │ ├── example-cs.csproj │ │ ├── example-vc.vcproj │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example.sln │ │ └── runme.cs │ ├── funcptr │ │ ├── Makefile │ │ ├── example-cs.csproj │ │ ├── example-vc.vcproj │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── example.sln │ │ └── runme.cs │ ├── nested │ │ ├── Makefile │ │ ├── example-cs.csproj │ │ ├── example-vc.vcproj │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example.sln │ │ └── runme.cs │ ├── reference │ │ ├── Makefile │ │ ├── example-cs.csproj │ │ ├── example-vc.vcproj │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example.sln │ │ └── runme.cs │ ├── simple │ │ ├── Makefile │ │ ├── example-cs.csproj │ │ ├── example-vc.vcproj │ │ ├── example.c │ │ ├── example.i │ │ ├── example.sln │ │ └── runme.cs │ ├── template │ │ ├── Makefile │ │ ├── example-cs.csproj │ │ ├── example-vc.vcproj │ │ ├── example.h │ │ ├── example.i │ │ ├── example.sln │ │ └── runme.cs │ └── variables │ │ ├── Makefile │ │ ├── example-cs.csproj │ │ ├── example-vc.vcproj │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── example.sln │ │ └── runme.cs ├── d │ ├── callback │ │ ├── Makefile │ │ ├── d2 │ │ │ └── runme.d │ │ ├── example.cxx │ │ ├── example.h │ │ └── example.i │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── d2 │ │ │ └── runme.d │ │ ├── example.cxx │ │ ├── example.h │ │ └── example.i │ ├── constants │ │ ├── Makefile │ │ ├── d2 │ │ │ └── runme.d │ │ └── example.i │ ├── enum │ │ ├── Makefile │ │ ├── d2 │ │ │ └── runme.d │ │ ├── example.cxx │ │ ├── example.h │ │ └── example.i │ ├── example.mk │ ├── extend │ │ ├── Makefile │ │ ├── d2 │ │ │ └── runme.d │ │ ├── example.cxx │ │ ├── example.h │ │ └── example.i │ ├── funcptr │ │ ├── Makefile │ │ ├── d2 │ │ │ └── runme.d │ │ ├── example.c │ │ ├── example.h │ │ └── example.i │ ├── simple │ │ ├── Makefile │ │ ├── d2 │ │ │ └── runme.d │ │ ├── example.c │ │ └── example.i │ └── variables │ │ ├── Makefile │ │ ├── d2 │ │ └── runme.d │ │ ├── example.c │ │ ├── example.h │ │ └── example.i ├── fortran │ ├── bare │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.f90 │ ├── bindc │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.f90 │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.f90 │ ├── except │ │ ├── Makefile │ │ ├── downstream.i │ │ ├── example.i │ │ └── runme.f90 │ ├── funcptr │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.f90 │ ├── inheritance │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.F90 │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.f90 │ ├── spdemo │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.f90 │ ├── static_members │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.F90 │ ├── std_string │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.f90 │ ├── templated │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.f90 │ └── thinvec │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.f90 ├── go │ ├── callback │ │ ├── Makefile │ │ ├── callback.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── gocallback.go │ │ ├── index.html │ │ └── runme.go │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── class.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.go │ ├── constants │ │ ├── Makefile │ │ ├── example.i │ │ ├── index.html │ │ └── runme.go │ ├── director │ │ ├── Makefile │ │ ├── director.go │ │ ├── director.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.go │ ├── enum │ │ ├── Makefile │ │ ├── enum.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.go │ ├── extend │ │ ├── Makefile │ │ ├── ceo.go │ │ ├── example.h │ │ ├── example.i │ │ ├── extend.cxx │ │ ├── index.html │ │ └── runme.go │ ├── funcptr │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ ├── funcptr.c │ │ ├── index.html │ │ └── runme.go │ ├── goin │ │ ├── Makefile │ │ ├── example.i │ │ ├── index.html │ │ └── runme.go │ ├── index.html │ ├── multimap │ │ ├── Makefile │ │ ├── example.i │ │ ├── multimap.c │ │ └── runme.go │ ├── pointer │ │ ├── Makefile │ │ ├── example.i │ │ ├── index.html │ │ ├── pointer.c │ │ └── runme.go │ ├── reference │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ ├── reference.cxx │ │ └── runme.go │ ├── simple │ │ ├── Makefile │ │ ├── example.i │ │ ├── index.html │ │ ├── runme.go │ │ └── simple.c │ ├── template │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.go │ └── variables │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ ├── runme.go │ │ └── variables.c ├── guile │ ├── README │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.scm │ ├── constants │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.scm │ ├── matrix │ │ ├── Makefile │ │ ├── README │ │ ├── example.i │ │ ├── matrix.c │ │ ├── matrix.i │ │ ├── runme.scm │ │ ├── vector.c │ │ ├── vector.h │ │ └── vector.i │ ├── multimap │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.scm │ ├── multivalue │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.scm │ ├── port │ │ ├── Makefile │ │ ├── README │ │ ├── example.c │ │ ├── example.i │ │ └── runme.scm │ ├── simple │ │ ├── Makefile │ │ ├── README │ │ ├── example.c │ │ ├── example.i │ │ └── runme.scm │ └── std_vector │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.scm ├── index.html ├── java │ ├── callback │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.java │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.dsp │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.java │ ├── constants │ │ ├── Makefile │ │ ├── example.i │ │ ├── index.html │ │ └── runme.java │ ├── doxygen │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.dsp │ │ ├── example.h │ │ ├── example.i │ │ └── runme.java │ ├── enum │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.java │ ├── extend │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.java │ ├── funcptr │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.java │ ├── index.html │ ├── multimap │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.dsp │ │ ├── example.i │ │ └── runme.java │ ├── native │ │ ├── Makefile │ │ ├── example.i │ │ ├── index.html │ │ └── runme.java │ ├── nested │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.dsp │ │ ├── example.h │ │ ├── example.i │ │ └── runme.java │ ├── pointer │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ ├── index.html │ │ └── runme.java │ ├── reference │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.java │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.dsp │ │ ├── example.i │ │ ├── index.html │ │ └── runme.java │ ├── template │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.java │ ├── typemap │ │ ├── Makefile │ │ ├── example.i │ │ ├── index.html │ │ └── runme.java │ └── variables │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.java ├── javascript │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── binding.gyp.in │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example.js │ │ └── runme.js │ ├── constant │ │ ├── Makefile │ │ ├── binding.gyp.in │ │ ├── example.h │ │ ├── example.i │ │ ├── example.js │ │ └── runme.js │ ├── enum │ │ ├── Makefile │ │ ├── binding.gyp.in │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example.js │ │ └── runme.js │ ├── example.mk │ ├── exception │ │ ├── Makefile │ │ ├── binding.gyp.in │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example.js │ │ └── runme.js │ ├── functor │ │ ├── Makefile │ │ ├── binding.gyp.in │ │ ├── example.i │ │ ├── example.js │ │ └── runme.js │ ├── native │ │ ├── Makefile │ │ ├── binding.gyp.in │ │ ├── example.i │ │ ├── example.js │ │ ├── index.html │ │ └── runme.js │ ├── nspace │ │ ├── Makefile │ │ ├── binding.gyp.in │ │ ├── example.h │ │ ├── example.i │ │ ├── example.js │ │ └── runme.js │ ├── operator │ │ ├── Makefile │ │ ├── binding.gyp.in │ │ ├── example.h │ │ ├── example.i │ │ ├── example.js │ │ └── runme.js │ ├── overload │ │ ├── Makefile │ │ ├── binding.gyp.in │ │ ├── example.h │ │ ├── example.i │ │ ├── example.js │ │ └── runme.js │ ├── pointer │ │ ├── Makefile │ │ ├── binding.gyp.in │ │ ├── example.c │ │ ├── example.i │ │ ├── example.js │ │ └── runme.js │ ├── reference │ │ ├── Makefile │ │ ├── binding.gyp.in │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example.js │ │ └── runme.js │ ├── simple │ │ ├── Makefile │ │ ├── binding.gyp.in │ │ ├── example.c │ │ ├── example.i │ │ ├── example.js │ │ └── runme.js │ ├── template │ │ ├── Makefile │ │ ├── binding.gyp.in │ │ ├── example.h │ │ ├── example.i │ │ ├── example.js │ │ └── runme.js │ └── variables │ │ ├── Makefile │ │ ├── binding.gyp.in │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── example.js │ │ └── runme.js ├── lua │ ├── arrays │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.lua │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.lua │ ├── constants │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.lua │ ├── dual │ │ ├── Makefile │ │ ├── dual.cpp │ │ ├── example.i │ │ └── example2.i │ ├── embed │ │ ├── Makefile │ │ ├── embed.c │ │ ├── example.c │ │ ├── example.i │ │ └── runme.lua │ ├── embed2 │ │ ├── Makefile │ │ ├── embed2.c │ │ ├── example.c │ │ ├── example.i │ │ └── runme.lua │ ├── embed3 │ │ ├── Makefile │ │ ├── embed3.cpp │ │ ├── example.cpp │ │ ├── example.h │ │ ├── example.i │ │ └── runme.lua │ ├── exception │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.lua │ ├── funcptr3 │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.lua │ ├── functest │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.lua │ ├── functor │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.lua │ ├── import.lua │ ├── import │ │ ├── Makefile │ │ ├── README │ │ ├── bar.h │ │ ├── bar.i │ │ ├── base.h │ │ ├── base.i │ │ ├── foo.h │ │ ├── foo.i │ │ ├── runme.lua │ │ ├── spam.h │ │ └── spam.i │ ├── lua.c │ ├── nspace │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.lua │ ├── owner │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.lua │ ├── pointer │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.lua │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.lua │ └── variables │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.lua ├── mzscheme │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.scm │ ├── multimap │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.scm │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.scm │ └── std_vector │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.scm ├── ocaml │ ├── argout_ref │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.ml │ ├── callback │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.ml │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.ml │ ├── contract │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.ml │ ├── scoped_enum │ │ ├── Makefile │ │ ├── README │ │ ├── example.i │ │ ├── foo.h │ │ └── runme.ml │ ├── shapes │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.ml │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ ├── index.html │ │ └── runme.ml │ ├── std_string │ │ ├── Makefile │ │ ├── README │ │ ├── example.h │ │ ├── example.i │ │ └── runme.ml │ ├── std_vector │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.ml │ ├── stl │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.ml │ ├── string_from_ptr │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.ml │ └── strings_test │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.ml ├── octave │ ├── callback │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.m │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.m │ ├── constants │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.m │ ├── contract │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.m │ ├── enum │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.m │ ├── example.mk │ ├── extend │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.m │ ├── funcptr │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.m │ ├── funcptr2 │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.m │ ├── functor │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.m │ ├── module_load │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.m │ ├── operator │ │ ├── @swig_ref │ │ │ └── horzcat.m │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.m │ ├── pointer │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.m │ ├── reference │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.m │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.m │ ├── template │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.m │ └── variables │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.m ├── perl5 │ ├── callback │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.pl │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.dsp │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.pl │ ├── constants │ │ ├── Makefile │ │ ├── example.i │ │ ├── index.html │ │ └── runme.pl │ ├── constants2 │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.pl │ ├── extend │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.pl │ ├── funcptr │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.pl │ ├── import │ │ ├── Makefile │ │ ├── README │ │ ├── bar.dsp │ │ ├── bar.h │ │ ├── bar.i │ │ ├── base.dsp │ │ ├── base.h │ │ ├── base.i │ │ ├── example.dsw │ │ ├── foo.dsp │ │ ├── foo.h │ │ ├── foo.i │ │ ├── runme.pl │ │ ├── spam.dsp │ │ ├── spam.h │ │ └── spam.i │ ├── index.html │ ├── inline │ │ ├── Makefile │ │ ├── README │ │ └── runme.pl │ ├── multimap │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.dsp │ │ ├── example.i │ │ └── runme.pl │ ├── multiple_inheritance │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.pl │ ├── pointer │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ ├── index.html │ │ └── runme.pl │ ├── reference │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.pl │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.dsp │ │ ├── example.i │ │ ├── index.html │ │ └── runme.pl │ ├── value │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.pl │ ├── variables │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.pl │ └── xmlstring │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── runme.pl │ │ └── xmlstring.i ├── php │ ├── callback │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.php │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.php │ ├── constants │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.php │ ├── cpointer │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.php │ ├── disown │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.php │ ├── enum │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.php │ ├── extend │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.php │ ├── funcptr │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.php │ ├── overloading │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.php │ ├── pointer │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.php │ ├── pragmas │ │ ├── Makefile │ │ ├── example.i │ │ ├── include.php │ │ └── runme.php │ ├── proxy │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.php │ ├── reference │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.php │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.php │ ├── sync │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.php │ ├── value │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.php │ └── variables │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.php ├── python │ ├── callback │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.py │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.dsp │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.py │ ├── constants │ │ ├── Makefile │ │ ├── example.i │ │ ├── index.html │ │ └── runme.py │ ├── contract │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.dsp │ │ ├── example.i │ │ └── runme.py │ ├── docstrings │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.py │ ├── doxygen │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.dsp │ │ ├── example.h │ │ ├── example.i │ │ └── runme.py │ ├── enum │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.py │ ├── exception │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.py │ ├── exceptproxy │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.py │ ├── extend │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.py │ ├── funcptr │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.py │ ├── funcptr2 │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.py │ ├── functor │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.py │ ├── import │ │ ├── Makefile │ │ ├── README │ │ ├── bar.dsp │ │ ├── bar.h │ │ ├── bar.i │ │ ├── base.dsp │ │ ├── base.h │ │ ├── base.i │ │ ├── example.dsw │ │ ├── foo.dsp │ │ ├── foo.h │ │ ├── foo.i │ │ ├── runme.py │ │ ├── spam.dsp │ │ ├── spam.h │ │ └── spam.i │ ├── import_packages │ │ ├── Makefile │ │ ├── README │ │ ├── from_init1 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── py2 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ └── pkg2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bar.hpp │ │ │ │ │ ├── bar.i │ │ │ │ │ ├── foo.hpp │ │ │ │ │ └── foo.i │ │ │ ├── py3 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ └── pkg2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bar.hpp │ │ │ │ │ ├── bar.i │ │ │ │ │ ├── foo.hpp │ │ │ │ │ └── foo.i │ │ │ └── runme.py │ │ ├── from_init2 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── py2 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ └── pkg2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bar.hpp │ │ │ │ │ ├── bar.i │ │ │ │ │ └── pkg3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── foo.hpp │ │ │ │ │ └── foo.i │ │ │ ├── py3 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ └── pkg2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bar.hpp │ │ │ │ │ ├── bar.i │ │ │ │ │ └── pkg3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── foo.hpp │ │ │ │ │ └── foo.i │ │ │ └── runme.py │ │ ├── from_init3 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── py2 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ └── pkg2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bar.hpp │ │ │ │ │ ├── bar.i │ │ │ │ │ └── pkg3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── pkg4 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── foo.hpp │ │ │ │ │ └── foo.i │ │ │ ├── py3 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ └── pkg2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bar.hpp │ │ │ │ │ ├── bar.i │ │ │ │ │ └── pkg3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── pkg4 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── foo.hpp │ │ │ │ │ └── foo.i │ │ │ └── runme.py │ │ ├── module_is_init │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── pkg1 │ │ │ │ ├── Makefile │ │ │ │ ├── foo.hpp │ │ │ │ └── foo.i │ │ │ └── runme.py │ │ ├── namespace_pkg │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── nonpkg.py │ │ │ ├── normal.py │ │ │ ├── nstest.py │ │ │ ├── robin.i │ │ │ ├── runme.py │ │ │ ├── split.py │ │ │ └── zipsplit.py │ │ ├── relativeimport1 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── py2 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ └── pkg2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bar.hpp │ │ │ │ │ ├── bar.i │ │ │ │ │ └── pkg3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── foo.hpp │ │ │ │ │ └── foo.i │ │ │ ├── py3 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ └── pkg2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bar.hpp │ │ │ │ │ ├── bar.i │ │ │ │ │ └── pkg3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── foo.hpp │ │ │ │ │ └── foo.i │ │ │ └── runme.py │ │ ├── relativeimport2 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── py2 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ └── pkg2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bar.hpp │ │ │ │ │ ├── bar.i │ │ │ │ │ └── pkg3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── pkg4 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── foo.hpp │ │ │ │ │ └── foo.i │ │ │ ├── py3 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ └── pkg2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bar.hpp │ │ │ │ │ ├── bar.i │ │ │ │ │ └── pkg3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── pkg4 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── foo.hpp │ │ │ │ │ └── foo.i │ │ │ └── runme.py │ │ ├── relativeimport3 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── py2 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ └── pkg2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bar.hpp │ │ │ │ │ ├── bar.i │ │ │ │ │ └── pkg3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── foo.hpp │ │ │ │ │ └── foo.i │ │ │ ├── py3 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ └── pkg2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bar.hpp │ │ │ │ │ ├── bar.i │ │ │ │ │ └── pkg3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── foo.hpp │ │ │ │ │ └── foo.i │ │ │ └── runme.py │ │ ├── same_modnames1 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── pkg1 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ ├── foo.hpp │ │ │ │ └── foo.i │ │ │ ├── pkg2 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ ├── foo.hpp │ │ │ │ └── foo.i │ │ │ └── runme.py │ │ ├── same_modnames2 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── pkg1 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ ├── foo.hpp │ │ │ │ ├── foo.i │ │ │ │ └── pkg2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── foo.hpp │ │ │ │ │ └── foo.i │ │ │ └── runme.py │ │ └── split_modules │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── vanilla │ │ │ ├── Makefile │ │ │ ├── pkg1 │ │ │ │ ├── Makefile │ │ │ │ ├── __init__.py │ │ │ │ └── foo.i │ │ │ └── runme.py │ │ │ └── vanilla_split │ │ │ ├── Makefile │ │ │ ├── foo.i │ │ │ ├── pkg1 │ │ │ └── __init__.py │ │ │ └── runme.py │ ├── import_template │ │ ├── Makefile │ │ ├── README │ │ ├── bar.h │ │ ├── bar.i │ │ ├── base.h │ │ ├── base.i │ │ ├── foo.h │ │ ├── foo.i │ │ ├── runme.py │ │ ├── spam.h │ │ └── spam.i │ ├── index.html │ ├── libffi │ │ ├── Makefile │ │ └── example.i │ ├── multimap │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.dsp │ │ ├── example.i │ │ └── runme.py │ ├── operator │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.py │ ├── performance │ │ ├── Makefile │ │ ├── constructor │ │ ├── func │ │ │ ├── Makefile │ │ │ ├── Simple.i │ │ │ └── runme.py │ │ ├── harness.py │ │ ├── hierarchy │ │ │ ├── Makefile │ │ │ ├── Simple.i │ │ │ └── runme.py │ │ ├── hierarchy_operator │ │ │ ├── Makefile │ │ │ ├── Simple.i │ │ │ └── runme.py │ │ └── operator │ │ │ ├── Makefile │ │ │ ├── Simple.i │ │ │ └── runme.py │ ├── pointer │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ ├── index.html │ │ └── runme.py │ ├── reference │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.py │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.dsp │ │ ├── example.i │ │ ├── index.html │ │ └── runme.py │ ├── smartptr │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── runme.py │ │ └── smartptr.h │ ├── std_map │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.py │ ├── std_vector │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.py │ ├── template │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.py │ ├── varargs │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.py │ └── variables │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.py ├── r │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.dsp │ │ ├── example.h │ │ ├── example.i │ │ └── runme.R │ └── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.dsp │ │ ├── example.i │ │ └── runme.R ├── ruby │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.dsp │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.rb │ ├── constants │ │ ├── Makefile │ │ ├── example.i │ │ ├── index.html │ │ └── runme.rb │ ├── enum │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.rb │ ├── exceptproxy │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.rb │ ├── free_function │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.dsp │ │ ├── example.h │ │ ├── example.i │ │ └── runme.rb │ ├── funcptr │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.rb │ ├── funcptr2 │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.rb │ ├── functor │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.rb │ ├── hashargs │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.rb │ ├── import │ │ ├── Makefile │ │ ├── README │ │ ├── bar.dsp │ │ ├── bar.h │ │ ├── bar.i │ │ ├── base.dsp │ │ ├── base.h │ │ ├── base.i │ │ ├── example.dsw │ │ ├── foo.dsp │ │ ├── foo.h │ │ ├── foo.i │ │ ├── runme.rb │ │ ├── spam.dsp │ │ ├── spam.h │ │ └── spam.i │ ├── import_template │ │ ├── Makefile │ │ ├── README │ │ ├── bar.h │ │ ├── bar.i │ │ ├── base.h │ │ ├── base.i │ │ ├── foo.h │ │ ├── foo.i │ │ ├── runme.rb │ │ ├── spam.h │ │ └── spam.i │ ├── index.html │ ├── mark_function │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.dsp │ │ ├── example.h │ │ ├── example.i │ │ └── runme.rb │ ├── multimap │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.dsp │ │ ├── example.i │ │ └── runme.rb │ ├── operator │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.rb │ ├── overloading │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.rb │ ├── pointer │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ ├── index.html │ │ └── runme.rb │ ├── reference │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.rb │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.dsp │ │ ├── example.i │ │ ├── index.html │ │ └── runme.rb │ ├── std_vector │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.rb │ ├── template │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.rb │ ├── value │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.rb │ └── variables │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.rb ├── scilab │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.sci │ ├── constants │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.sci │ ├── contract │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.sci │ ├── enum │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.sci │ ├── funcptr │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.sci │ ├── matrix │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.sci │ ├── matrix2 │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ ├── main.c │ │ └── runme.sci │ ├── pointer │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.sci │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.sci │ ├── std_list │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.sci │ ├── std_vector │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.sci │ ├── struct │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.sci │ ├── template │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.sci │ └── variables │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── runme.sci ├── tcl │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.dsp │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ ├── runme.tcl │ │ └── runme2.tcl │ ├── constants │ │ ├── Makefile │ │ ├── example.i │ │ ├── index.html │ │ └── runme.tcl │ ├── contract │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.dsp │ │ ├── example.i │ │ └── runme.tcl │ ├── enum │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.tcl │ ├── funcptr │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.tcl │ ├── import │ │ ├── Makefile │ │ ├── README │ │ ├── bar.dsp │ │ ├── bar.h │ │ ├── bar.i │ │ ├── base.dsp │ │ ├── base.h │ │ ├── base.i │ │ ├── example.dsw │ │ ├── foo.dsp │ │ ├── foo.h │ │ ├── foo.i │ │ ├── runme.tcl │ │ ├── spam.dsp │ │ ├── spam.h │ │ └── spam.i │ ├── index.html │ ├── multimap │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.dsp │ │ ├── example.i │ │ └── runme.tcl │ ├── operator │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.tcl │ ├── pointer │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ ├── index.html │ │ └── runme.tcl │ ├── reference │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.tcl │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.dsp │ │ ├── example.i │ │ ├── index.html │ │ └── runme.tcl │ ├── std_vector │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.tcl │ ├── value │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.tcl │ └── variables │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── index.html │ │ └── runme.tcl ├── test-suite │ ├── README │ ├── abstract_access.i │ ├── abstract_basecast.i │ ├── abstract_inherit.i │ ├── abstract_inherit_ok.i │ ├── abstract_inherit_using.i │ ├── abstract_signature.i │ ├── abstract_typedef.i │ ├── abstract_typedef2.i │ ├── abstract_virtual.i │ ├── access_change.i │ ├── add_link.i │ ├── aggregate.i │ ├── allowexcept.i │ ├── allprotected.i │ ├── allprotected_not.i │ ├── anonymous_bitfield.i │ ├── apply_signed_char.i │ ├── apply_strings.i │ ├── argcargvtest.i │ ├── argout.i │ ├── array_member.i │ ├── array_typedef_memberin.i │ ├── arrayref.i │ ├── arrays.i │ ├── arrays_dimensionless.i │ ├── arrays_global.i │ ├── arrays_global_twodim.i │ ├── arrays_scope.i │ ├── autodoc.i │ ├── bloody_hell.i │ ├── bom_utf8.i │ ├── bools.i │ ├── c_delete.i │ ├── c_delete_function.i │ ├── callback.i │ ├── cast_operator.i │ ├── casts.i │ ├── catches.i │ ├── catches_strings.i │ ├── ccomplextest.i │ ├── char_binary.i │ ├── char_constant.i │ ├── char_strings.i │ ├── chartest.i │ ├── class_case.i │ ├── class_forward.i │ ├── class_ignore.i │ ├── class_scope_namespace.i │ ├── class_scope_weird.i │ ├── clientdata_prop.list │ ├── clientdata_prop_a.h │ ├── clientdata_prop_a.i │ ├── clientdata_prop_b.h │ ├── clientdata_prop_b.i │ ├── command_line_define.i │ ├── common.mk │ ├── compactdefaultargs.i │ ├── complextest.i │ ├── const_const.i │ ├── const_const_2.i │ ├── constant_directive.i │ ├── constant_expr.i │ ├── constant_expr_c.i │ ├── constant_pointers.i │ ├── constants.i │ ├── constover.i │ ├── constructor_copy.i │ ├── constructor_copy_non_const.i │ ├── constructor_exception.i │ ├── constructor_explicit.i │ ├── constructor_ignore.i │ ├── constructor_rename.i │ ├── constructor_value.i │ ├── contract.i │ ├── contract_c.i │ ├── conversion.i │ ├── conversion_namespace.i │ ├── conversion_ns_template.i │ ├── conversion_operators.i │ ├── copyctor.i │ ├── cplusplus_throw.i │ ├── cpp11_alias_nested_template_scoping.i │ ├── cpp11_alignment.i │ ├── cpp11_alternate_function_syntax.i │ ├── cpp11_attribute_specifiers.i │ ├── cpp11_auto_variable.i │ ├── cpp11_brackets_expression.i │ ├── cpp11_constexpr.i │ ├── cpp11_decltype.i │ ├── cpp11_default_delete.i │ ├── cpp11_delegating_constructors.i │ ├── cpp11_director_enums.i │ ├── cpp11_director_using_constructor.i │ ├── cpp11_directors.i │ ├── cpp11_explicit_conversion_operators.i │ ├── cpp11_final_class.i │ ├── cpp11_final_directors.i │ ├── cpp11_final_override.i │ ├── cpp11_function_objects.i │ ├── cpp11_hash_tables.i │ ├── cpp11_inheriting_constructors.i │ ├── cpp11_initializer_list.i │ ├── cpp11_initializer_list_extend.i │ ├── cpp11_lambda_functions.i │ ├── cpp11_move_only.i │ ├── cpp11_move_only_helper.i │ ├── cpp11_move_only_valuewrapper.i │ ├── cpp11_move_typemaps.i │ ├── cpp11_noexcept.i │ ├── cpp11_null_pointer_constant.i │ ├── cpp11_raw_string_literals.i │ ├── cpp11_ref_qualifiers.i │ ├── cpp11_ref_qualifiers_rvalue_unignore.i │ ├── cpp11_ref_qualifiers_typemaps.i │ ├── cpp11_reference_wrapper.i │ ├── cpp11_result_of.i │ ├── cpp11_rvalue_reference.i │ ├── cpp11_rvalue_reference2.i │ ├── cpp11_rvalue_reference3.i │ ├── cpp11_rvalue_reference_move.i │ ├── cpp11_shared_ptr_const.i │ ├── cpp11_shared_ptr_nullptr_in_containers.i │ ├── cpp11_shared_ptr_overload.i │ ├── cpp11_shared_ptr_template_upcast.i │ ├── cpp11_shared_ptr_upcast.i │ ├── cpp11_sizeof_object.i │ ├── cpp11_static_assert.i │ ├── cpp11_std_array.i │ ├── cpp11_std_unique_ptr.i │ ├── cpp11_std_unordered_map.i │ ├── cpp11_std_unordered_multimap.i │ ├── cpp11_std_unordered_multiset.i │ ├── cpp11_std_unordered_set.i │ ├── cpp11_strongly_typed_enumerations.i │ ├── cpp11_strongly_typed_enumerations_simple.i │ ├── cpp11_template_double_brackets.i │ ├── cpp11_template_explicit.i │ ├── cpp11_template_parameters_decltype.i │ ├── cpp11_template_typedefs.i │ ├── cpp11_thread_local.i │ ├── cpp11_type_aliasing.i │ ├── cpp11_type_traits.i │ ├── cpp11_uniform_initialization.i │ ├── cpp11_unrestricted_unions.i │ ├── cpp11_userdefined_literals.i │ ├── cpp11_using_constructor.i │ ├── cpp11_using_typedef_struct.i │ ├── cpp11_variadic_function_templates.i │ ├── cpp11_variadic_templates.i │ ├── cpp14_auto_return_type.i │ ├── cpp14_binary_integer_literals.i │ ├── cpp17_director_string_view.i │ ├── cpp17_enable_if_t.i │ ├── cpp17_hex_floating_literals.i │ ├── cpp17_nested_namespaces.i │ ├── cpp17_nspace_nested_namespaces.i │ ├── cpp17_string_view.i │ ├── cpp17_u8_char_literals.i │ ├── cpp20_lambda_template.i │ ├── cpp20_spaceship_operator.i │ ├── cpp_basic.i │ ├── cpp_enum.i │ ├── cpp_namespace.i │ ├── cpp_nodefault.i │ ├── cpp_parameters.i │ ├── cpp_static.i │ ├── cpp_typedef.i │ ├── csharp │ │ ├── Makefile.in │ │ ├── README │ │ ├── aggregate_runme.cs │ │ ├── allprotected_runme.cs │ │ ├── apply_strings_runme.cs │ │ ├── argcargvtest_runme.cs │ │ ├── bools_runme.cs │ │ ├── catches_runme.cs │ │ ├── catches_strings_runme.cs │ │ ├── char_strings_runme.cs │ │ ├── complextest_runme.cs │ │ ├── constover_runme.cs │ │ ├── cpp11_move_only_runme.cs │ │ ├── cpp11_move_only_valuewrapper_runme.cs │ │ ├── cpp11_move_typemaps_runme.cs │ │ ├── cpp11_rvalue_reference_move_runme.cs │ │ ├── cpp11_shared_ptr_template_upcast_runme.cs │ │ ├── cpp11_std_array_runme.cs │ │ ├── cpp11_std_unique_ptr_runme.cs │ │ ├── cpp11_strongly_typed_enumerations_runme.cs │ │ ├── cpp17_director_string_view_runme.cs │ │ ├── cpp17_nested_namespaces_runme.cs │ │ ├── cpp17_nspace_nested_namespaces_runme.cs │ │ ├── cpp17_string_view_runme.cs │ │ ├── csharp_attributes_runme.cs │ │ ├── csharp_director_typemaps_runme.cs │ │ ├── csharp_exceptions_runme.cs │ │ ├── csharp_lib_arrays_bool_runme.cs │ │ ├── csharp_lib_arrays_runme.cs │ │ ├── csharp_prepost_runme.cs │ │ ├── csharp_typemaps_runme.cs │ │ ├── default_args_runme.cs │ │ ├── default_constructor_runme.cs │ │ ├── director_alternating_runme.cs │ │ ├── director_basic_runme.cs │ │ ├── director_classes_runme.cs │ │ ├── director_classic_runme.cs │ │ ├── director_default_runme.cs │ │ ├── director_ignore_runme.cs │ │ ├── director_nspace_runme.cs │ │ ├── director_pass_by_value_runme.cs │ │ ├── director_primitives_runme.cs │ │ ├── director_property_runme.cs │ │ ├── director_protected_runme.cs │ │ ├── director_smartptr_runme.cs │ │ ├── director_string_runme.cs │ │ ├── director_using_member_scopes_runme.cs │ │ ├── director_void_runme.cs │ │ ├── director_wstring_runme.cs │ │ ├── enum_forward_runme.cs │ │ ├── enum_thorough_runme.cs │ │ ├── enum_thorough_simple_runme.cs │ │ ├── enum_thorough_typesafe_runme.cs │ │ ├── exception_order_runme.cs │ │ ├── friends_runme.cs │ │ ├── imports_runme.cs │ │ ├── inherit_target_language_runme.cs │ │ ├── intermediary_classname_runme.cs │ │ ├── li_attribute_runme.cs │ │ ├── li_boost_shared_ptr_bits_runme.cs │ │ ├── li_boost_shared_ptr_director_runme.cs │ │ ├── li_boost_shared_ptr_runme.cs │ │ ├── li_constraints_runme.cs │ │ ├── li_std_auto_ptr_runme.cs │ │ ├── li_std_combinations_runme.cs │ │ ├── li_std_except_runme.cs │ │ ├── li_std_list_runme.cs │ │ ├── li_std_map_runme.cs │ │ ├── li_std_set_runme.cs │ │ ├── li_std_string_runme.cs │ │ ├── li_std_vector_enum_runme.cs │ │ ├── li_std_vector_runme.cs │ │ ├── li_std_wstring_runme.cs │ │ ├── li_swigtype_inout_runme.cs │ │ ├── li_typemaps_runme.cs │ │ ├── long_long_runme.cs │ │ ├── member_pointer_runme.cs │ │ ├── multiple_inheritance_abstract_runme.cs │ │ ├── multiple_inheritance_interfaces_runme.cs │ │ ├── multiple_inheritance_nspace_runme.cs │ │ ├── multiple_inheritance_overload_runme.cs │ │ ├── multiple_inheritance_shared_ptr_runme.cs │ │ ├── nested_class_runme.cs │ │ ├── nested_directors_runme.cs │ │ ├── nested_in_template_runme.cs │ │ ├── nested_inheritance_interface_runme.cs │ │ ├── nested_structs_runme.cs │ │ ├── nested_workaround_runme.cs │ │ ├── nspace_extend_runme.cs │ │ ├── nspace_runme.cs │ │ ├── operator_overload_runme.cs │ │ ├── overload_complicated_runme.cs │ │ ├── overload_template_runme.cs │ │ ├── pointer_reference_runme.cs │ │ ├── preproc_constants_c_runme.cs │ │ ├── preproc_constants_runme.cs │ │ ├── proxycode_runme.cs │ │ ├── rename_pcre_encoder_runme.cs │ │ ├── rename_pcre_enum_runme.cs │ │ ├── rename_simple_runme.cs │ │ ├── sizet_runme.cs │ │ ├── sneaky1_runme.cs │ │ ├── special_variable_attributes_runme.cs │ │ ├── special_variable_macros_runme.cs │ │ ├── template_nested_flat_runme.cs │ │ ├── template_nested_runme.cs │ │ ├── threads_runme.cs │ │ ├── throw_exception_runme.cs │ │ ├── typemap_namespace_runme.cs │ │ ├── typemap_out_optimal_runme.cs │ │ ├── varargs_runme.cs │ │ └── virtual_poly_runme.cs │ ├── csharp_attributes.i │ ├── csharp_director_typemaps.i │ ├── csharp_exceptions.i │ ├── csharp_features.i │ ├── csharp_lib_arrays.i │ ├── csharp_lib_arrays_bool.i │ ├── csharp_namespace_system_collision.i │ ├── csharp_prepost.i │ ├── csharp_swig2_compatibility.i │ ├── csharp_typemaps.i │ ├── curiously_recurring_template_pattern.i │ ├── d │ │ ├── Makefile.in │ │ ├── README │ │ ├── aggregate_runme.2.d │ │ ├── allprotected_runme.2.d │ │ ├── apply_strings_runme.2.d │ │ ├── argcargvtest_runme.2.d │ │ ├── bools_runme.2.d │ │ ├── catches_runme.2.d │ │ ├── catches_strings_runme.2.d │ │ ├── char_binary_runme.2.d │ │ ├── char_strings_runme.2.d │ │ ├── constover_runme.2.d │ │ ├── cpp11_move_typemaps_runme.2.d │ │ ├── cpp11_rvalue_reference_move_runme.2.d │ │ ├── cpp11_std_unique_ptr_runme.2.d │ │ ├── d_nativepointers_runme.2.d │ │ ├── default_args_runme.2.d │ │ ├── default_constructor_runme.2.d │ │ ├── director_alternating_runme.2.d │ │ ├── director_basic_runme.2.d │ │ ├── director_classes_runme.2.d │ │ ├── director_classic_runme.2.d │ │ ├── director_ignore_runme.2.d │ │ ├── director_primitives_runme.2.d │ │ ├── director_protected_runme.2.d │ │ ├── director_string_runme.2.d │ │ ├── enum_thorough_runme.2.d │ │ ├── inherit_target_language_runme.2.d │ │ ├── li_attribute_runme.2.d │ │ ├── li_boost_shared_ptr_bits_runme.2.d │ │ ├── li_boost_shared_ptr_director_runme.2.d │ │ ├── li_boost_shared_ptr_runme.2.d │ │ ├── li_constraints_runme.2.d │ │ ├── li_std_auto_ptr_runme.2.d │ │ ├── li_std_except_runme.2.d │ │ ├── li_std_string_runme.2.d │ │ ├── li_std_vector_runme.2.d │ │ ├── li_typemaps_runme.2.d │ │ ├── long_long_runme.2.d │ │ ├── member_pointer_runme.2.d │ │ ├── nspace_extend_runme.2.d │ │ ├── nspace_runme.2.d │ │ ├── operator_overload_runme.2.d │ │ ├── overload_complicated_runme.2.d │ │ ├── overload_template_runme.2.d │ │ ├── pointer_reference_runme.2.d │ │ ├── preproc_constants_c_runme.2.d │ │ ├── preproc_constants_runme.2.d │ │ ├── proxycode_runme.2.d │ │ ├── sizet_runme.2.d │ │ ├── sneaky1_runme.2.d │ │ ├── special_variable_macros_runme.2.d │ │ ├── threads_runme.2.d │ │ ├── throw_exception_runme.2.d │ │ ├── typemap_namespace_runme.2.d │ │ ├── typemap_out_optimal_runme.2.d │ │ ├── varargs_runme.2.d │ │ └── virtual_poly_runme.2.d │ ├── d_nativepointers.i │ ├── default_arg_expressions.i │ ├── default_arg_values.i │ ├── default_args.i │ ├── default_args_c.i │ ├── default_constructor.i │ ├── defvalue_constructor.i │ ├── derived_byvalue.i │ ├── derived_nested.i │ ├── destructor_methodmodifiers.i │ ├── destructor_reprotected.i │ ├── director_abstract.i │ ├── director_alternating.i │ ├── director_basic.i │ ├── director_binary_string.i │ ├── director_classes.i │ ├── director_classic.i │ ├── director_comparison_operators.i │ ├── director_constructor.i │ ├── director_conversion_operators.i │ ├── director_default.i │ ├── director_detect.i │ ├── director_enum.i │ ├── director_exception.i │ ├── director_exception_catches.i │ ├── director_exception_nothrow.i │ ├── director_extend.i │ ├── director_finalizer.i │ ├── director_frob.i │ ├── director_ignore.i │ ├── director_keywords.i │ ├── director_multiple_inheritance.i │ ├── director_namespace_clash.i │ ├── director_nested.i │ ├── director_nested_class.i │ ├── director_nestedmodule.i │ ├── director_nspace.i │ ├── director_nspace_director_name_collision.i │ ├── director_overload.i │ ├── director_overload2.i │ ├── director_ownership.i │ ├── director_pass_by_value.i │ ├── director_primitives.i │ ├── director_profile.i │ ├── director_property.i │ ├── director_protected.i │ ├── director_protected_overloaded.i │ ├── director_redefined.i │ ├── director_ref.i │ ├── director_simple.i │ ├── director_smartptr.i │ ├── director_stl.i │ ├── director_string.i │ ├── director_template.i │ ├── director_thread.i │ ├── director_unroll.i │ ├── director_unwrap_result.i │ ├── director_using.i │ ├── director_using_member_scopes.i │ ├── director_void.i │ ├── director_wombat.i │ ├── director_wstring.i │ ├── disown.i │ ├── doxygen_alias.i │ ├── doxygen_autodoc_docstring.i │ ├── doxygen_basic_notranslate.i │ ├── doxygen_basic_translate.h │ ├── doxygen_basic_translate.i │ ├── doxygen_basic_translate_style2.i │ ├── doxygen_basic_translate_style3.i │ ├── doxygen_code_blocks.i │ ├── doxygen_ignore.i │ ├── doxygen_misc_constructs.h │ ├── doxygen_misc_constructs.i │ ├── doxygen_nested_class.i │ ├── doxygen_parsing.i │ ├── doxygen_parsing_enums.i │ ├── doxygen_parsing_enums_proper.i │ ├── doxygen_parsing_enums_simple.i │ ├── doxygen_parsing_enums_typesafe.i │ ├── doxygen_parsing_enums_typeunsafe.i │ ├── doxygen_translate.i │ ├── doxygen_translate_all_tags.i │ ├── doxygen_translate_links.i │ ├── duplicate_class_name_in_ns.i │ ├── duplicate_parm_names.i │ ├── dynamic_cast.i │ ├── empty.i │ ├── empty_c.i │ ├── enum_forward.i │ ├── enum_ignore.i │ ├── enum_macro.i │ ├── enum_missing.i │ ├── enum_plus.i │ ├── enum_rename.i │ ├── enum_scope_template.i │ ├── enum_template.i │ ├── enum_thorough.i │ ├── enum_thorough_proper.i │ ├── enum_thorough_simple.i │ ├── enum_thorough_typesafe.i │ ├── enum_thorough_typeunsafe.i │ ├── enum_var.i │ ├── enums.i │ ├── equality.i │ ├── errors │ │ ├── Makefile.in │ │ ├── c_bad_native.i │ │ ├── c_bad_native.stderr │ │ ├── c_class.i │ │ ├── c_class.stderr │ │ ├── c_empty_char.i │ │ ├── c_empty_char.stderr │ │ ├── c_enum_badvalue.i │ │ ├── c_enum_badvalue.stderr │ │ ├── c_extra_rblock.i │ │ ├── c_extra_rblock.stderr │ │ ├── c_extra_rbrace.i │ │ ├── c_extra_rbrace.stderr │ │ ├── c_extra_unsigned.i │ │ ├── c_extra_unsigned.stderr │ │ ├── c_insert_missing.i │ │ ├── c_insert_missing.stderr │ │ ├── c_long_short.i │ │ ├── c_long_short.stderr │ │ ├── c_missing_rbrace.i │ │ ├── c_missing_rbrace.stderr │ │ ├── c_missing_semi.i │ │ ├── c_missing_semi.stderr │ │ ├── c_redefine.i │ │ ├── c_redefine.stderr │ │ ├── c_redefine_typedef.i │ │ ├── c_redefine_typedef.stderr │ │ ├── c_spaceship.i │ │ ├── c_spaceship.stderr │ │ ├── c_varargs_neg.i │ │ ├── c_varargs_neg.stderr │ │ ├── cpp_bad_extern.i │ │ ├── cpp_bad_extern.stderr │ │ ├── cpp_bad_global_memberptr.i │ │ ├── cpp_bad_global_memberptr.stderr │ │ ├── cpp_class_definition.i │ │ ├── cpp_class_definition.stderr │ │ ├── cpp_extend_destructors.i │ │ ├── cpp_extend_destructors.stderr │ │ ├── cpp_extend_redefine.i │ │ ├── cpp_extend_redefine.stderr │ │ ├── cpp_extend_redefine_template.i │ │ ├── cpp_extend_redefine_template.stderr │ │ ├── cpp_extend_undefined.i │ │ ├── cpp_extend_undefined.stderr │ │ ├── cpp_extra_brackets.i │ │ ├── cpp_extra_brackets.stderr │ │ ├── cpp_extra_brackets2.i │ │ ├── cpp_extra_brackets2.stderr │ │ ├── cpp_final_destructor.stderr │ │ ├── cpp_inherit.i │ │ ├── cpp_inherit.stderr │ │ ├── cpp_inherit_ignored.i │ │ ├── cpp_inherit_ignored.stderr │ │ ├── cpp_inline_namespace.i │ │ ├── cpp_inline_namespace.stderr │ │ ├── cpp_invalid_exponents1.i │ │ ├── cpp_invalid_exponents1.stderr │ │ ├── cpp_invalid_exponents2.i │ │ ├── cpp_invalid_exponents2.stderr │ │ ├── cpp_invalid_qualifiers.i │ │ ├── cpp_invalid_qualifiers.stderr │ │ ├── cpp_invalid_template.i │ │ ├── cpp_invalid_template.stderr │ │ ├── cpp_macro_locator.i │ │ ├── cpp_macro_locator.stderr │ │ ├── cpp_missing_rparenthesis.i │ │ ├── cpp_missing_rparenthesis.stderr │ │ ├── cpp_missing_rtemplate.i │ │ ├── cpp_missing_rtemplate.stderr │ │ ├── cpp_namespace_alias.i │ │ ├── cpp_namespace_alias.stderr │ │ ├── cpp_namespace_aliasnot.i │ │ ├── cpp_namespace_aliasnot.stderr │ │ ├── cpp_namespace_aliasundef.i │ │ ├── cpp_namespace_aliasundef.stderr │ │ ├── cpp_namespace_template_bad.i │ │ ├── cpp_namespace_template_bad.stderr │ │ ├── cpp_namewarn.i │ │ ├── cpp_namewarn.stderr │ │ ├── cpp_nested_namespace_alias.i │ │ ├── cpp_nested_namespace_alias.stderr │ │ ├── cpp_nested_template.i │ │ ├── cpp_nested_template.stderr │ │ ├── cpp_no_access.i │ │ ├── cpp_no_access.stderr │ │ ├── cpp_no_return_type.i │ │ ├── cpp_no_return_type.stderr │ │ ├── cpp_nobase.i │ │ ├── cpp_nobase.stderr │ │ ├── cpp_overload_const.i │ │ ├── cpp_overload_const.stderr │ │ ├── cpp_pp_expressions_bad.i │ │ ├── cpp_pp_expressions_bad.stderr │ │ ├── cpp_private_inherit.i │ │ ├── cpp_private_inherit.stderr │ │ ├── cpp_raw_string_termination.i │ │ ├── cpp_raw_string_termination.stderr │ │ ├── cpp_recursive_typedef.i │ │ ├── cpp_recursive_typedef.stderr │ │ ├── cpp_redefine_class.i │ │ ├── cpp_redefine_class.stderr │ │ ├── cpp_refqualifier.i │ │ ├── cpp_refqualifier.stderr │ │ ├── cpp_scope_bad.i │ │ ├── cpp_scope_bad.stderr │ │ ├── cpp_shared_ptr.i │ │ ├── cpp_shared_ptr.stderr │ │ ├── cpp_template_class_repeat.i │ │ ├── cpp_template_class_repeat.stderr │ │ ├── cpp_template_duplicate_names.i │ │ ├── cpp_template_duplicate_names.stderr │ │ ├── cpp_template_explicit_instantiation.i │ │ ├── cpp_template_explicit_instantiation.stderr │ │ ├── cpp_template_friend.i │ │ ├── cpp_template_friend.stderr │ │ ├── cpp_template_nargs.i │ │ ├── cpp_template_nargs.stderr │ │ ├── cpp_template_not.i │ │ ├── cpp_template_not.stderr │ │ ├── cpp_template_partial.i │ │ ├── cpp_template_partial.stderr │ │ ├── cpp_template_partial_specialization_defaults.i │ │ ├── cpp_template_partial_specialization_defaults.stderr │ │ ├── cpp_template_redefine.i │ │ ├── cpp_template_redefine.stderr │ │ ├── cpp_template_repeat.i │ │ ├── cpp_template_repeat.stderr │ │ ├── cpp_template_scope.i │ │ ├── cpp_template_scope.stderr │ │ ├── cpp_template_undef.i │ │ ├── cpp_template_undef.stderr │ │ ├── cpp_typemap_out_optimal_bug.i │ │ ├── cpp_typemap_out_optimal_bug.stderr │ │ ├── cpp_using_constructor_bad.i │ │ ├── cpp_using_constructor_bad.stderr │ │ ├── cpp_using_declaration_overload.i │ │ ├── cpp_using_declaration_overload.stderr │ │ ├── cpp_using_not.i │ │ ├── cpp_using_not.stderr │ │ ├── cpp_using_rename.i │ │ ├── cpp_using_rename.stderr │ │ ├── cpp_using_undef.i │ │ ├── cpp_using_undef.stderr │ │ ├── doxygen_unclosed_tag.i │ │ ├── doxygen_unclosed_tag.stderr │ │ ├── doxygen_unknown_command.i │ │ ├── doxygen_unknown_command.stderr │ │ ├── nomodule.i │ │ ├── nomodule.stderr │ │ ├── pp_badeval.i │ │ ├── pp_badeval.stderr │ │ ├── pp_constant.i │ │ ├── pp_constant.stderr │ │ ├── pp_defined.i │ │ ├── pp_defined.stderr │ │ ├── pp_error_directive.i │ │ ├── pp_error_directive.stderr │ │ ├── pp_expressions_bad.i │ │ ├── pp_expressions_bad.stderr │ │ ├── pp_illegal_argument.i │ │ ├── pp_illegal_argument.stderr │ │ ├── pp_invalid_exponents.i │ │ ├── pp_invalid_exponents.stderr │ │ ├── pp_macro_badchar.i │ │ ├── pp_macro_badchar.stderr │ │ ├── pp_macro_defined_unterminated.i │ │ ├── pp_macro_defined_unterminated.stderr │ │ ├── pp_macro_expansion.i │ │ ├── pp_macro_expansion.stderr │ │ ├── pp_macro_expansion_multiline.i │ │ ├── pp_macro_expansion_multiline.stderr │ │ ├── pp_macro_inline_unterminated.i │ │ ├── pp_macro_inline_unterminated.stderr │ │ ├── pp_macro_missing_expression.i │ │ ├── pp_macro_missing_expression.stderr │ │ ├── pp_macro_nargs.i │ │ ├── pp_macro_nargs.stderr │ │ ├── pp_macro_redef.i │ │ ├── pp_macro_redef.stderr │ │ ├── pp_macro_rparen.i │ │ ├── pp_macro_rparen.stderr │ │ ├── pp_macro_unexpected_tokens.i │ │ ├── pp_macro_unexpected_tokens.stderr │ │ ├── pp_macro_unterminated.i │ │ ├── pp_macro_unterminated.stderr │ │ ├── pp_misplaced_elif.i │ │ ├── pp_misplaced_elif.stderr │ │ ├── pp_misplaced_else.i │ │ ├── pp_misplaced_else.stderr │ │ ├── pp_missing_enddef.i │ │ ├── pp_missing_enddef.stderr │ │ ├── pp_missing_endif.i │ │ ├── pp_missing_endif.stderr │ │ ├── pp_missing_endoffile.i │ │ ├── pp_missing_endoffile.stderr │ │ ├── pp_missing_file.i │ │ ├── pp_missing_file.stderr │ │ ├── pp_missing_rblock.i │ │ ├── pp_missing_rblock.stderr │ │ ├── pp_pragma.i │ │ ├── pp_pragma.stderr │ │ ├── pp_unknowndirective.i │ │ ├── pp_unknowndirective.stderr │ │ ├── pp_unknowndirective2.i │ │ ├── pp_unknowndirective2.stderr │ │ ├── pp_unknowndirective3.i │ │ ├── pp_unknowndirective3.stderr │ │ ├── pp_unknowndirective4.i │ │ ├── pp_unknowndirective4.stderr │ │ ├── pp_unknowndirective5.i │ │ ├── pp_unknowndirective5.stderr │ │ ├── pp_unterm_char.i │ │ ├── pp_unterm_char.stderr │ │ ├── pp_unterm_comment.i │ │ ├── pp_unterm_comment.stderr │ │ ├── pp_unterm_string.i │ │ ├── pp_unterm_string.stderr │ │ ├── pp_unterminated_block.i │ │ ├── pp_unterminated_block.stderr │ │ ├── pp_variable_args.i │ │ ├── pp_variable_args.stderr │ │ ├── swig_apply_nargs.i │ │ ├── swig_apply_nargs.stderr │ │ ├── swig_command_encoder.i │ │ ├── swig_command_encoder.stderr │ │ ├── swig_constant_missing_semi.i │ │ ├── swig_constant_missing_semi.stderr │ │ ├── swig_extend.i │ │ ├── swig_extend.stderr │ │ ├── swig_fragment_missing.i │ │ ├── swig_fragment_missing.stderr │ │ ├── swig_identifier.i │ │ ├── swig_identifier.stderr │ │ ├── swig_insert_bad.i │ │ ├── swig_insert_bad.stderr │ │ ├── swig_pythoncode_bad.i │ │ ├── swig_pythoncode_bad.stderr │ │ ├── swig_pythoncode_bad2.i │ │ ├── swig_pythoncode_bad2.stderr │ │ ├── swig_pythoncode_bad3.i │ │ ├── swig_pythoncode_bad3.stderr │ │ ├── swig_typemap_copy.i │ │ ├── swig_typemap_copy.stderr │ │ ├── swig_typemap_missing_value.i │ │ ├── swig_typemap_missing_value.stderr │ │ ├── swig_typemap_old.i │ │ ├── swig_typemap_old.stderr │ │ ├── swig_typemap_warn.i │ │ └── swig_typemap_warn.stderr │ ├── evil_diamond.i │ ├── evil_diamond_ns.i │ ├── evil_diamond_prop.i │ ├── exception_classname.i │ ├── exception_memory_leak.i │ ├── exception_order.i │ ├── exception_partial_info.i │ ├── expressions.i │ ├── extend.i │ ├── extend_constructor_destructor.i │ ├── extend_default.i │ ├── extend_placement.i │ ├── extend_special_variables.i │ ├── extend_template.i │ ├── extend_template_method.i │ ├── extend_template_ns.i │ ├── extend_typedef_class.i │ ├── extend_variable.i │ ├── extern_c.i │ ├── extern_declaration.i │ ├── extern_namespace.i │ ├── extern_throws.i │ ├── features.i │ ├── file_test.i │ ├── final_c.i │ ├── fortran │ │ ├── Makefile.in │ │ ├── abstract_access_runme.F90 │ │ ├── array_member_runme.F90 │ │ ├── arrays_global_twodim_runme.F90 │ │ ├── arrays_runme.F90 │ │ ├── ccomplextest_runme.F90 │ │ ├── char_binary_runme.F90 │ │ ├── complextest_runme.F90 │ │ ├── constructor_copy_runme.F90 │ │ ├── contract_c_runme.F90 │ │ ├── cpp11_move_typemaps_runme.F90 │ │ ├── cpp11_std_unique_ptr_runme.F90 │ │ ├── cpp_basic_runme.F90 │ │ ├── default_args_runme.F90 │ │ ├── default_constructor_runme.F90 │ │ ├── director_simple_runme.F90 │ │ ├── dynamic_cast_runme.F90 │ │ ├── enum_forward_runme.F90 │ │ ├── enum_thorough_runme.F90 │ │ ├── enums_runme.F90 │ │ ├── equality_runme.F90 │ │ ├── extend_template_method_runme.F90 │ │ ├── extend_variable_runme.F90 │ │ ├── fassert.h │ │ ├── fortran_array_typemap_runme.F90 │ │ ├── fortran_bindc_runme.F90 │ │ ├── fortran_callback_c_runme.F90 │ │ ├── fortran_callback_runme.F90 │ │ ├── fortran_global_const_runme.F90 │ │ ├── fortran_naming_runme.F90 │ │ ├── fortran_onlywrapped_runme.F90 │ │ ├── fortran_overloads_runme.F90 │ │ ├── fortran_ownership_runme.F90 │ │ ├── fortran_std_span_runme.F90 │ │ ├── fortran_subroutine_runme.F90 │ │ ├── friends_runme.F90 │ │ ├── funcptr_runme.F90 │ │ ├── global_namespace_runme.F90 │ │ ├── ignore_parameter_runme.F90 │ │ ├── imports_runme.F90 │ │ ├── inctest_runme.F90 │ │ ├── li_boost_shared_ptr_runme.F90 │ │ ├── li_std_map_runme.F90 │ │ ├── li_std_set_runme.F90 │ │ ├── li_std_string_runme.F90 │ │ ├── li_std_vector_runme.F90 │ │ ├── member_pointer_const_runme.F90 │ │ ├── member_pointer_runme.F90 │ │ ├── multi_import_runme.F90 │ │ ├── operator_overload_runme.F90 │ │ ├── ret_by_value_runme.F90 │ │ ├── smart_pointer_simple_runme.F90 │ │ ├── string_constants_runme.F90 │ │ ├── template_array_numeric_runme.F90 │ │ ├── template_basic_runme.F90 │ │ ├── typedef_sizet_runme.F90 │ │ └── unions_runme.F90 │ ├── fortran_array_typemap.i │ ├── fortran_bindc.i │ ├── fortran_bindc_c.i │ ├── fortran_callback.i │ ├── fortran_callback_c.i │ ├── fortran_global_const.i │ ├── fortran_naming.i │ ├── fortran_onlywrapped.i │ ├── fortran_overloads.i │ ├── fortran_ownership.i │ ├── fortran_std_span.i │ ├── fortran_subroutine.i │ ├── fragments.i │ ├── friends.i │ ├── friends_template.i │ ├── funcptr.i │ ├── funcptr_cpp.i │ ├── function_typedef.i │ ├── functors.i │ ├── fvirtual.i │ ├── global_functions.i │ ├── global_immutable_vars.i │ ├── global_immutable_vars_cpp.i │ ├── global_namespace.i │ ├── global_ns_arg.i │ ├── global_scope_types.i │ ├── global_vars.i │ ├── go │ │ ├── Makefile.in │ │ ├── abstract_access_runme.go │ │ ├── abstract_typedef2_runme.go │ │ ├── abstract_typedef_runme.go │ │ ├── abstract_virtual_runme.go │ │ ├── argcargvtest_runme.go │ │ ├── argout_runme.go │ │ ├── array_member_runme.go │ │ ├── arrays_global_runme.go │ │ ├── catches_strings_runme.go │ │ ├── char_binary_runme.go │ │ ├── class_case_runme.go │ │ ├── class_ignore_runme.go │ │ ├── class_scope_weird_runme.go │ │ ├── compactdefaultargs_runme.go │ │ ├── constover_runme.go │ │ ├── constructor_copy_runme.go │ │ ├── contract_runme.go │ │ ├── cpp11_std_array_runme.go │ │ ├── cpp11_strongly_typed_enumerations_runme.go │ │ ├── cpp_enum_runme.go │ │ ├── cpp_namespace_runme.go │ │ ├── cpp_static_runme.go │ │ ├── default_args_runme.go │ │ ├── default_constructor_runme.go │ │ ├── director_alternating_runme.go │ │ ├── director_basic_runme.go │ │ ├── director_classic_runme.go │ │ ├── director_default_runme.go │ │ ├── director_detect_runme.go │ │ ├── director_enum_runme.go │ │ ├── director_exception_runme.go │ │ ├── director_extend_runme.go │ │ ├── director_finalizer_runme.go │ │ ├── director_frob_runme.go │ │ ├── director_nested_runme.go │ │ ├── director_profile_runme.go │ │ ├── director_protected_runme.go │ │ ├── director_string_runme.go │ │ ├── director_unroll_runme.go │ │ ├── disown_runme.go │ │ ├── dynamic_cast_runme.go │ │ ├── empty_c_runme.go │ │ ├── empty_runme.go │ │ ├── enum_template_runme.go │ │ ├── enums_runme.go │ │ ├── exception_order_runme.go │ │ ├── extend_placement_runme.go │ │ ├── extend_template_ns_runme.go │ │ ├── extend_template_runme.go │ │ ├── extend_variable_runme.go │ │ ├── extern_c_runme.go │ │ ├── friends_runme.go │ │ ├── fvirtual_runme.go │ │ ├── global_ns_arg_runme.go │ │ ├── go_director_inout_runme.go │ │ ├── go_inout_runme.go │ │ ├── go_subdir_import_runme.go │ │ ├── grouping_runme.go │ │ ├── import_nomodule_runme.go │ │ ├── imports_runme.go │ │ ├── inctest_runme.go │ │ ├── inherit_member_runme.go │ │ ├── inherit_missing_runme.go │ │ ├── input_runme.go │ │ ├── keyword_rename_c_runme.go │ │ ├── keyword_rename_runme.go │ │ ├── li_attribute_runme.go │ │ ├── li_carrays_cpp_runme.go │ │ ├── li_carrays_runme.go │ │ ├── li_cdata_cpp_runme.go │ │ ├── li_cdata_runme.go │ │ ├── li_cmalloc_runme.go │ │ ├── li_constraints_runme.go │ │ ├── li_cpointer_cpp_runme.go │ │ ├── li_cpointer_runme.go │ │ ├── li_std_map_runme.go │ │ ├── li_std_vector_ptr_runme.go │ │ ├── member_pointer_runme.go │ │ ├── memberin_extend_c_runme.go │ │ ├── minherit_runme.go │ │ ├── mod_runme.go │ │ ├── multi_import_runme.go │ │ ├── namespace_class_runme.go │ │ ├── namespace_typemap_runme.go │ │ ├── namespace_virtual_method_runme.go │ │ ├── naturalvar_runme.go │ │ ├── nested_workaround_runme.go │ │ ├── overload_complicated_runme.go │ │ ├── overload_copy_runme.go │ │ ├── overload_extend2_runme.go │ │ ├── overload_extend_c_runme.go │ │ ├── overload_extend_runme.go │ │ ├── overload_polymorphic_runme.go │ │ ├── overload_rename_runme.go │ │ ├── overload_simple_runme.go │ │ ├── overload_subtype_runme.go │ │ ├── overload_template_fast_runme.go │ │ ├── overload_template_runme.go │ │ ├── preproc_runme.go │ │ ├── primitive_ref_runme.go │ │ ├── profiletest_runme.go │ │ ├── refcount_runme.go │ │ ├── reference_global_vars_runme.go │ │ ├── rename_scope_runme.go │ │ ├── rename_simple_runme.go │ │ ├── rename_strip_encoder_runme.go │ │ ├── ret_by_value_runme.go │ │ ├── return_const_value_runme.go │ │ ├── smart_pointer_extend_runme.go │ │ ├── smart_pointer_member_runme.go │ │ ├── smart_pointer_multi_runme.go │ │ ├── smart_pointer_multi_typedef_runme.go │ │ ├── smart_pointer_overload_runme.go │ │ ├── smart_pointer_rename_runme.go │ │ ├── smart_pointer_simple_runme.go │ │ ├── smart_pointer_templatevariables_runme.go │ │ ├── smart_pointer_typedef_runme.go │ │ ├── sneaky1_runme.go │ │ ├── special_variable_macros_runme.go │ │ ├── static_const_member_2_runme.go │ │ ├── struct_initialization_runme.go │ │ ├── struct_rename_runme.go │ │ ├── struct_value_runme.go │ │ ├── template_default_arg_runme.go │ │ ├── template_extend1_runme.go │ │ ├── template_extend2_runme.go │ │ ├── template_inherit_runme.go │ │ ├── template_ns4_runme.go │ │ ├── template_ns_runme.go │ │ ├── template_opaque_runme.go │ │ ├── template_ref_type_runme.go │ │ ├── template_rename_runme.go │ │ ├── template_static_runme.go │ │ ├── template_tbase_template_runme.go │ │ ├── template_type_namespace_runme.go │ │ ├── template_typedef_cplx3_runme.go │ │ ├── template_typedef_cplx4_runme.go │ │ ├── threads_exception_runme.go │ │ ├── typedef_class_runme.go │ │ ├── typedef_funcptr_runme.go │ │ ├── typedef_inherit_runme.go │ │ ├── typedef_scope_runme.go │ │ ├── typemap_namespace_runme.go │ │ ├── typemap_ns_using_runme.go │ │ ├── typemap_out_optimal_runme.go │ │ ├── typename_runme.go │ │ ├── unions_runme.go │ │ ├── using1_runme.go │ │ ├── using2_runme.go │ │ ├── using_composition_runme.go │ │ ├── using_extend_runme.go │ │ ├── using_inherit_runme.go │ │ ├── using_private_runme.go │ │ ├── using_protected_runme.go │ │ ├── varargs_overload_runme.go │ │ ├── varargs_runme.go │ │ ├── virtual_derivation_runme.go │ │ ├── virtual_poly_runme.go │ │ ├── voidtest_runme.go │ │ └── wrapmacro_runme.go │ ├── go_director_inout.i │ ├── go_inout.i │ ├── go_subdir_import.list │ ├── go_subdir_import_a.i │ ├── go_subdir_import_b.i │ ├── grouping.i │ ├── guile │ │ ├── Makefile.in │ │ ├── README │ │ ├── argcargvtest_runme.scm │ │ ├── argout_runme.scm │ │ ├── casts_runme.scm │ │ ├── catches_strings_runme.scm │ │ ├── char_constant_runme.scm │ │ ├── class_ignore_runme.scm │ │ ├── constover_runme.scm │ │ ├── contract_runme.scm │ │ ├── cpp11_move_typemaps_runme.scm │ │ ├── cpp11_rvalue_reference_move_runme.scm │ │ ├── cpp11_std_unique_ptr_runme.scm │ │ ├── cpp_enum_runme.scm │ │ ├── cpp_namespace_runme.scm │ │ ├── dynamic_cast_runme.scm │ │ ├── guile_ext_test_external.cxx │ │ ├── guile_ext_test_runme.scm │ │ ├── import_nomodule_runme.scm │ │ ├── imports_runme.scm │ │ ├── inherit_missing_runme.scm │ │ ├── integers_runme.scm │ │ ├── li_std_auto_ptr_runme.scm │ │ ├── li_std_string_runme.scm │ │ ├── li_typemaps_runme.scm │ │ ├── list_vector_runme.scm │ │ ├── multivalue_runme.scm │ │ ├── name_runme.scm │ │ ├── newobject1_runme.scm │ │ ├── null_pointer_runme.scm │ │ ├── overload_complicated_runme.scm │ │ ├── overload_copy_runme.scm │ │ ├── overload_extend_c_runme.scm │ │ ├── overload_extend_runme.scm │ │ ├── overload_null_runme.scm │ │ ├── overload_simple_runme.scm │ │ ├── overload_subtype_runme.scm │ │ ├── pointer_in_out_runme.scm │ │ ├── reference_global_vars_runme.scm │ │ ├── testsuite.scm │ │ ├── throw_exception_runme.scm │ │ ├── typedef_inherit_runme.scm │ │ ├── typename_runme.scm │ │ └── unions_runme.scm │ ├── guile_ext_test.i │ ├── iadd.i │ ├── ignore_parameter.i │ ├── ignore_template_constructor.i │ ├── immutable_values.i │ ├── implicittest.i │ ├── import_fragments.i │ ├── import_fragments_a.i │ ├── import_fragments_b.i │ ├── import_nomodule.h │ ├── import_nomodule.i │ ├── import_stl.list │ ├── import_stl_a.i │ ├── import_stl_b.i │ ├── imports.list │ ├── imports_a.h │ ├── imports_a.i │ ├── imports_b.h │ ├── imports_b.i │ ├── inctest.h │ ├── inctest.i │ ├── infinity.i │ ├── inherit.i │ ├── inherit_member.i │ ├── inherit_missing.i │ ├── inherit_same_name.i │ ├── inherit_target_language.i │ ├── inherit_void_arg.i │ ├── inline_initializer.i │ ├── inout.i │ ├── inplaceadd.i │ ├── input.i │ ├── insert_directive.h │ ├── insert_directive.i │ ├── integers.i │ ├── intermediary_classname.i │ ├── java │ │ ├── CommentParser.java │ │ ├── Makefile.in │ │ ├── README │ │ ├── abstract_inherit_using_runme.java │ │ ├── aggregate_runme.java │ │ ├── allprotected_runme.java │ │ ├── apply_signed_char_runme.java │ │ ├── apply_strings_runme.java │ │ ├── argcargvtest_runme.java │ │ ├── array_member_runme.java │ │ ├── arrays_global_twodim_runme.java │ │ ├── catches_strings_runme.java │ │ ├── char_binary_runme.java │ │ ├── char_strings_runme.java │ │ ├── class_scope_namespace_runme.java │ │ ├── constant_directive_runme.java │ │ ├── constructor_copy_non_const_runme.java │ │ ├── copyctor_runme.java │ │ ├── cpp11_alias_nested_template_scoping_runme.java │ │ ├── cpp11_brackets_expression_runme.java │ │ ├── cpp11_constexpr_runme.java │ │ ├── cpp11_director_using_constructor_runme.java │ │ ├── cpp11_inheriting_constructors_runme.java │ │ ├── cpp11_initializer_list_runme.java │ │ ├── cpp11_lambda_functions_runme.java │ │ ├── cpp11_move_only_runme.java │ │ ├── cpp11_move_only_valuewrapper_runme.java │ │ ├── cpp11_move_typemaps_runme.java │ │ ├── cpp11_raw_string_literals_runme.java │ │ ├── cpp11_ref_qualifiers_runme.java │ │ ├── cpp11_ref_qualifiers_rvalue_unignore_runme.java │ │ ├── cpp11_ref_qualifiers_typemaps_runme.java │ │ ├── cpp11_result_of_runme.java │ │ ├── cpp11_rvalue_reference_move_runme.java │ │ ├── cpp11_shared_ptr_overload_runme.java │ │ ├── cpp11_shared_ptr_template_upcast_runme.java │ │ ├── cpp11_std_array_runme.java │ │ ├── cpp11_std_unique_ptr_runme.java │ │ ├── cpp11_std_unordered_map_runme.java │ │ ├── cpp11_std_unordered_set_runme.java │ │ ├── cpp11_strongly_typed_enumerations_runme.java │ │ ├── cpp11_strongly_typed_enumerations_simple_runme.java │ │ ├── cpp11_template_parameters_decltype_runme.java │ │ ├── cpp11_template_typedefs_runme.java │ │ ├── cpp11_thread_local_runme.java │ │ ├── cpp11_type_aliasing_runme.java │ │ ├── cpp11_using_constructor_runme.java │ │ ├── cpp17_director_string_view_runme.java │ │ ├── cpp17_enable_if_t_runme.java │ │ ├── cpp17_nested_namespaces_runme.java │ │ ├── cpp17_nspace_nested_namespaces_runme.java │ │ ├── cpp17_string_view_runme.java │ │ ├── cpp_typedef_runme.java │ │ ├── curiously_recurring_template_pattern_runme.java │ │ ├── default_args_runme.java │ │ ├── default_constructor_runme.java │ │ ├── derived_nested_runme.java │ │ ├── director_abstract_runme.java │ │ ├── director_basic_runme.java │ │ ├── director_binary_string_runme.java │ │ ├── director_classes_runme.java │ │ ├── director_classic_runme.java │ │ ├── director_default_runme.java │ │ ├── director_enum_runme.java │ │ ├── director_exception_catches_runme.java │ │ ├── director_exception_runme.java │ │ ├── director_frob_runme.java │ │ ├── director_ignore_runme.java │ │ ├── director_nested_class_runme.java │ │ ├── director_nspace_runme.java │ │ ├── director_ownership_runme.java │ │ ├── director_pass_by_value_runme.java │ │ ├── director_primitives_runme.java │ │ ├── director_property_runme.java │ │ ├── director_protected_runme.java │ │ ├── director_ref_runme.java │ │ ├── director_smartptr_runme.java │ │ ├── director_string_runme.java │ │ ├── director_thread_runme.java │ │ ├── director_unroll_runme.java │ │ ├── director_using_member_scopes_runme.java │ │ ├── director_wombat_runme.java │ │ ├── doxygen_alias_runme.java │ │ ├── doxygen_basic_notranslate_runme.java │ │ ├── doxygen_basic_translate_runme.java │ │ ├── doxygen_basic_translate_style2_runme.java │ │ ├── doxygen_basic_translate_style3_runme.java │ │ ├── doxygen_code_blocks_runme.java │ │ ├── doxygen_ignore_runme.java │ │ ├── doxygen_misc_constructs_runme.java │ │ ├── doxygen_nested_class_runme.java │ │ ├── doxygen_parsing_enums_proper_runme.java │ │ ├── doxygen_parsing_enums_simple_runme.java │ │ ├── doxygen_parsing_enums_typesafe_runme.java │ │ ├── doxygen_parsing_enums_typeunsafe_runme.java │ │ ├── doxygen_parsing_runme.java │ │ ├── doxygen_translate_all_tags_runme.java │ │ ├── doxygen_translate_links_runme.java │ │ ├── doxygen_translate_runme.java │ │ ├── dynamic_cast_runme.java │ │ ├── enum_forward_runme.java │ │ ├── enum_macro_runme.java │ │ ├── enum_thorough_proper_runme.java │ │ ├── enum_thorough_runme.java │ │ ├── enum_thorough_simple_runme.java │ │ ├── enum_thorough_typeunsafe_runme.java │ │ ├── extend_constructor_destructor_runme.java │ │ ├── extend_default_runme.java │ │ ├── extend_special_variables_runme.java │ │ ├── extend_template_method_runme.java │ │ ├── extend_typedef_class_runme.java │ │ ├── extern_declaration_runme.java │ │ ├── friends_runme.java │ │ ├── friends_template_runme.java │ │ ├── global_namespace_runme.java │ │ ├── ignore_parameter_runme.java │ │ ├── imports_runme.java │ │ ├── inctest_runme.java │ │ ├── inherit_target_language_runme.java │ │ ├── intermediary_classname_runme.java │ │ ├── java_constants_runme.java │ │ ├── java_director_assumeoverride_runme.java │ │ ├── java_director_exception_feature_nspace_runme.java │ │ ├── java_director_exception_feature_runme.java │ │ ├── java_director_ptrclass_runme.java │ │ ├── java_director_runme.java │ │ ├── java_director_typemaps_ptr_runme.java │ │ ├── java_director_typemaps_runme.java │ │ ├── java_enums_runme.java │ │ ├── java_jnitypes_runme.java │ │ ├── java_lib_arrays_dimensionless_runme.java │ │ ├── java_lib_arrays_runme.java │ │ ├── java_lib_various_runme.java │ │ ├── java_pgcpp_runme.java │ │ ├── java_pragmas_runme.java │ │ ├── java_prepost_runme.java │ │ ├── java_throws_runme.java │ │ ├── java_typemaps_proxy_runme.java │ │ ├── java_typemaps_typewrapper_runme.java │ │ ├── kwargs_feature_runme.java │ │ ├── li_boost_intrusive_ptr_runme.java │ │ ├── li_boost_shared_ptr_attribute_runme.java │ │ ├── li_boost_shared_ptr_bits_runme.java │ │ ├── li_boost_shared_ptr_director_runme.java │ │ ├── li_boost_shared_ptr_runme.java │ │ ├── li_boost_shared_ptr_template_runme.java │ │ ├── li_carrays_cpp_runme.java │ │ ├── li_carrays_runme.java │ │ ├── li_cdata_cpp_runme.java │ │ ├── li_cdata_runme.java │ │ ├── li_constraints_runme.java │ │ ├── li_std_auto_ptr_runme.java │ │ ├── li_std_except_runme.java │ │ ├── li_std_list_runme.java │ │ ├── li_std_map_runme.java │ │ ├── li_std_set_runme.java │ │ ├── li_std_string_runme.java │ │ ├── li_std_vector_enum_runme.java │ │ ├── li_std_vector_runme.java │ │ ├── li_typemaps_runme.java │ │ ├── long_long_runme.java │ │ ├── member_pointer_const_runme.java │ │ ├── member_pointer_runme.java │ │ ├── memberin_extend_runme.java │ │ ├── minherit2_runme.java │ │ ├── multiple_inheritance_abstract_runme.java │ │ ├── multiple_inheritance_interfaces_runme.java │ │ ├── multiple_inheritance_nspace_runme.java │ │ ├── multiple_inheritance_overload_runme.java │ │ ├── multiple_inheritance_runme.java │ │ ├── multiple_inheritance_shared_ptr_runme.java │ │ ├── namespace_chase_runme.java │ │ ├── namespace_forward_declaration_runme.java │ │ ├── namespace_template_runme.java │ │ ├── native_directive_runme.java │ │ ├── naturalvar_more_runme.java │ │ ├── naturalvar_onoff_runme.java │ │ ├── nested_class_runme.java │ │ ├── nested_extend_c_runme.java │ │ ├── nested_inheritance_interface_runme.java │ │ ├── nested_structs_runme.java │ │ ├── nested_template_base_runme.java │ │ ├── nested_workaround_runme.java │ │ ├── nspace_extend_runme.java │ │ ├── nspace_runme.java │ │ ├── operator_overload_runme.java │ │ ├── overload_complicated_runme.java │ │ ├── overload_template_runme.java │ │ ├── pointer_reference_runme.java │ │ ├── preproc_line_file_runme.java │ │ ├── primitive_ref_runme.java │ │ ├── profiletest_runme.java │ │ ├── proxycode_runme.java │ │ ├── rename1_runme.java │ │ ├── rename2_runme.java │ │ ├── rename3_runme.java │ │ ├── rename4_runme.java │ │ ├── rename_pcre_encoder_runme.java │ │ ├── rename_pcre_enum_runme.java │ │ ├── rename_wildcard_runme.java │ │ ├── ret_by_value_runme.java │ │ ├── rname_runme.java │ │ ├── sizet_runme.java │ │ ├── smart_pointer_const_overload_runme.java │ │ ├── smart_pointer_ignore_runme.java │ │ ├── special_variable_macros_runme.java │ │ ├── special_variables_runme.java │ │ ├── template_class_reuse_name_runme.java │ │ ├── template_classes_runme.java │ │ ├── template_construct_runme.java │ │ ├── template_default_arg_runme.java │ │ ├── template_default_cache_runme.java │ │ ├── template_default_class_parms_runme.java │ │ ├── template_default_class_parms_typedef_runme.java │ │ ├── template_function_parm_runme.java │ │ ├── template_methods_runme.java │ │ ├── template_namespace_forward_declaration_runme.java │ │ ├── template_nested_flat_runme.java │ │ ├── template_nested_runme.java │ │ ├── template_nested_typemaps_runme.java │ │ ├── template_parameters_global_scope_runme.java │ │ ├── template_partial_specialization_more_runme.java │ │ ├── template_partial_specialization_runme.java │ │ ├── template_partial_specialization_typedef_runme.java │ │ ├── template_specialization_using_declaration_runme.java │ │ ├── template_template_parameters_runme.java │ │ ├── template_template_template_parameters_runme.java │ │ ├── template_templated_constructors_runme.java │ │ ├── template_type_collapse_runme.java │ │ ├── template_typedef_inherit_runme.java │ │ ├── template_typedef_typedef_runme.java │ │ ├── template_using_directive_and_declaration_forward_runme.java │ │ ├── template_using_directive_typedef_runme.java │ │ ├── template_using_member_default_arg_runme.java │ │ ├── typedef_classforward_same_name_runme.java │ │ ├── typedef_funcptr_runme.java │ │ ├── typemap_arrays_runme.java │ │ ├── typemap_namespace_runme.java │ │ ├── typemap_out_optimal_runme.java │ │ ├── typemap_template_parms_runme.java │ │ ├── unions_runme.java │ │ ├── using_directive_and_declaration_forward_runme.java │ │ ├── using_directive_and_declaration_runme.java │ │ ├── using_member_multiple_inherit_runme.java │ │ ├── using_pointers_runme.java │ │ ├── varargs_runme.java │ │ ├── virtual_poly_runme.java │ │ └── wallkw_runme.java │ ├── java_constants.i │ ├── java_director.i │ ├── java_director_assumeoverride.i │ ├── java_director_exception_feature.i │ ├── java_director_exception_feature_nspace.i │ ├── java_director_ptrclass.i │ ├── java_director_typemaps.i │ ├── java_director_typemaps_ptr.i │ ├── java_enums.i │ ├── java_jnitypes.i │ ├── java_lib_arrays.i │ ├── java_lib_arrays_dimensionless.i │ ├── java_lib_various.i │ ├── java_nspacewithoutpackage.i │ ├── java_pgcpp.i │ ├── java_pragmas.i │ ├── java_prepost.i │ ├── java_throws.i │ ├── java_typemaps_proxy.i │ ├── java_typemaps_typewrapper.i │ ├── javascript │ │ ├── Makefile.in │ │ ├── abstract_access_runme.js │ │ ├── abstract_inherit_runme.js │ │ ├── abstract_typedef2_runme.js │ │ ├── abstract_typedef_runme.js │ │ ├── abstract_virtual_runme.js │ │ ├── argcargvtest_runme.js │ │ ├── array_member_runme.js │ │ ├── arrays_global_runme.js │ │ ├── callback_runme.js │ │ ├── catches_strings_runme.js │ │ ├── char_binary_runme.js │ │ ├── char_strings_runme.js │ │ ├── class_ignore_runme.js │ │ ├── class_scope_weird_runme.js │ │ ├── complextest_runme.js │ │ ├── constant_directive_runme.js │ │ ├── constover_runme.js │ │ ├── constructor_copy_runme.js │ │ ├── cpp11_alternate_function_syntax_runme.js │ │ ├── cpp11_decltype_runme.js │ │ ├── cpp11_final_class_runme.js │ │ ├── cpp11_initializer_list_runme.js │ │ ├── cpp11_move_only_runme.js │ │ ├── cpp11_move_typemaps_runme.js │ │ ├── cpp11_null_pointer_constant_runme.js │ │ ├── cpp11_ref_qualifiers_runme.js │ │ ├── cpp11_ref_qualifiers_rvalue_unignore_runme.js │ │ ├── cpp11_result_of_runme.js │ │ ├── cpp11_rvalue_reference_move_runme.js │ │ ├── cpp11_rvalue_reference_runme.js │ │ ├── cpp11_std_unique_ptr_runme.js │ │ ├── cpp11_strongly_typed_enumerations_runme.js │ │ ├── cpp11_thread_local_runme.js │ │ ├── cpp11_using_typedef_struct_runme.js │ │ ├── cpp11_variadic_function_templates_runme.js │ │ ├── cpp14_binary_integer_literals_runme.js │ │ ├── cpp17_hex_floating_literals_runme.js │ │ ├── cpp17_nested_namespaces_runme.js │ │ ├── cpp17_u8_char_literals_runme.js │ │ ├── cpp20_spaceship_operator_runme.js │ │ ├── cpp_enum_runme.js │ │ ├── cpp_namespace_runme.js │ │ ├── cpp_static_runme.js │ │ ├── default_arg_values_runme.js │ │ ├── default_args_c_runme.js │ │ ├── default_args_runme.js │ │ ├── director_alternating_runme.js │ │ ├── disown_runme.js │ │ ├── dynamic_cast_runme.js │ │ ├── empty_c_runme.js │ │ ├── empty_runme.js │ │ ├── enum_template_runme.js │ │ ├── enums_runme.js │ │ ├── exception_classname_runme.js │ │ ├── extend_placement_runme.js │ │ ├── extend_template_method_runme.js │ │ ├── extend_template_ns_runme.js │ │ ├── extend_template_runme.js │ │ ├── extend_variable_runme.js │ │ ├── extern_c_runme.js │ │ ├── final_c_runme.js │ │ ├── friends_runme.js │ │ ├── funcptr_cpp_runme.js │ │ ├── functors_runme.js │ │ ├── fvirtual_runme.js │ │ ├── global_functions_runme.js │ │ ├── global_namespace_runme.js │ │ ├── global_ns_arg_runme.js │ │ ├── global_vars_runme.js │ │ ├── grouping_runme.js │ │ ├── iadd_runme.js │ │ ├── ignore_parameter_runme.js │ │ ├── import_nomodule_runme.js │ │ ├── inctest_runme.js │ │ ├── infinity_runme.js │ │ ├── inherit_missing_runme.js │ │ ├── inplaceadd_runme.js │ │ ├── input_runme.js │ │ ├── integers_runme.js │ │ ├── javascript_lib_arrays_runme.js │ │ ├── keyword_rename_c_runme.js │ │ ├── keyword_rename_runme.js │ │ ├── langobj_runme.js │ │ ├── li_attribute_runme.js │ │ ├── li_attribute_template_runme.js │ │ ├── li_carrays_cpp_runme.js │ │ ├── li_carrays_runme.js │ │ ├── li_cdata_cpp_runme.js │ │ ├── li_cdata_runme.js │ │ ├── li_cmalloc_runme.js │ │ ├── li_constraints_runme.js │ │ ├── li_cpointer_cpp_runme.js │ │ ├── li_cpointer_runme.js │ │ ├── li_factory_runme.js │ │ ├── li_std_auto_ptr_runme.js │ │ ├── li_std_containers_int_runme.js │ │ ├── li_std_map_member_runme.js │ │ ├── li_std_map_runme.js │ │ ├── li_std_pair_runme.js │ │ ├── li_std_pair_using_runme.js │ │ ├── li_std_vector_enum_runme.js │ │ ├── li_std_vector_runme.js │ │ ├── li_typemaps_runme.js │ │ ├── member_pointer_const_runme.js │ │ ├── member_pointer_runme.js │ │ ├── memberin_extend_c_runme.js │ │ ├── multivalue_runme.js │ │ ├── name_warnings_runme.js │ │ ├── namespace_class_runme.js │ │ ├── namespace_typemap_runme.js │ │ ├── namespace_virtual_method_runme.js │ │ ├── native_directive_runme.js │ │ ├── naturalvar_runme.js │ │ ├── nested_in_template_runme.js │ │ ├── nested_template_base_runme.js │ │ ├── nested_workaround_runme.js │ │ ├── node_template │ │ │ ├── binding.gyp.in │ │ │ ├── index.js.in │ │ │ └── napi-leaks-suppression.txt │ │ ├── not_c_keywords_runme.js │ │ ├── nspace_extend_runme.js │ │ ├── nspace_runme.js │ │ ├── null_pointer_runme.js │ │ ├── operator_overload_runme.js │ │ ├── operbool_runme.js │ │ ├── overload_bool_runme.js │ │ ├── overload_complicated_runme.js │ │ ├── overload_copy_runme.js │ │ ├── overload_extend2_runme.js │ │ ├── overload_extend_c_runme.js │ │ ├── overload_extend_runme.js │ │ ├── overload_null_runme.js │ │ ├── overload_simple_runme.js │ │ ├── overload_template_fast_runme.js │ │ ├── overload_template_runme.js │ │ ├── pointer_reference_runme.js │ │ ├── preproc_cpp_runme.js │ │ ├── preproc_defined_runme.js │ │ ├── preproc_gcc_output_runme.js │ │ ├── preproc_include_runme.js │ │ ├── preproc_runme.js │ │ ├── primitive_ref_runme.js │ │ ├── profiletest_runme.js │ │ ├── reference_global_vars_runme.js │ │ ├── rename1_runme.js │ │ ├── rename2_runme.js │ │ ├── rename3_runme.js │ │ ├── rename4_runme.js │ │ ├── rename_pcre_encoder_runme.js │ │ ├── rename_predicates_runme.js │ │ ├── rename_rstrip_encoder_runme.js │ │ ├── rename_scope_runme.js │ │ ├── rename_simple_runme.js │ │ ├── rename_strip_encoder_runme.js │ │ ├── ret_by_value_runme.js │ │ ├── return_const_value_runme.js │ │ ├── smart_pointer_member_runme.js │ │ ├── smart_pointer_multi_runme.js │ │ ├── smart_pointer_multi_typedef_runme.js │ │ ├── smart_pointer_not_runme.js │ │ ├── smart_pointer_rename_runme.js │ │ ├── smart_pointer_simple_runme.js │ │ ├── smart_pointer_templatevariables_runme.js │ │ ├── smart_pointer_typedef_runme.js │ │ ├── sneaky1_runme.js │ │ ├── special_variable_macros_runme.js │ │ ├── static_const_member_2_runme.js │ │ ├── string_simple_runme.js │ │ ├── struct_initialization_runme.js │ │ ├── struct_rename_runme.js │ │ ├── struct_value_runme.js │ │ ├── swig_exception_runme.js │ │ ├── template_class_reuse_name_runme.js │ │ ├── template_classes_runme.js │ │ ├── template_construct_runme.js │ │ ├── template_default_arg_overloaded_extend_runme.js │ │ ├── template_default_arg_overloaded_runme.js │ │ ├── template_default_arg_runme.js │ │ ├── template_default_cache_runme.js │ │ ├── template_extend1_runme.js │ │ ├── template_extend2_runme.js │ │ ├── template_inherit_runme.js │ │ ├── template_ns4_runme.js │ │ ├── template_ns_runme.js │ │ ├── template_opaque_runme.js │ │ ├── template_ref_type_runme.js │ │ ├── template_rename_runme.js │ │ ├── template_static_runme.js │ │ ├── template_tbase_template_runme.js │ │ ├── template_template_parameters_runme.js │ │ ├── template_type_namespace_runme.js │ │ ├── template_typedef_cplx2_runme.js │ │ ├── template_typedef_cplx3_runme.js │ │ ├── template_typedef_cplx4_runme.js │ │ ├── template_typedef_cplx_runme.js │ │ ├── template_typemaps_typedef2_runme.js │ │ ├── template_typemaps_typedef_runme.js │ │ ├── template_using_directive_typedef_runme.js │ │ ├── typedef_class_runme.js │ │ ├── typedef_classforward_same_name_runme.js │ │ ├── typedef_funcptr_runme.js │ │ ├── typedef_inherit_runme.js │ │ ├── typedef_scope_runme.js │ │ ├── typedef_typedef_runme.js │ │ ├── typemap_arrays_runme.js │ │ ├── typemap_delete_runme.js │ │ ├── typemap_documentation_runme.js │ │ ├── typemap_namespace_runme.js │ │ ├── typemap_ns_using_runme.js │ │ ├── typemap_out_optimal_runme.js │ │ ├── typemap_qualifier_strip_runme.js │ │ ├── typemap_template_typedef_runme.js │ │ ├── typename_runme.js │ │ ├── types_directive_runme.js │ │ ├── unicode_strings_runme.js │ │ ├── using1_runme.js │ │ ├── using2_runme.js │ │ ├── using_private_runme.js │ │ ├── using_protected_runme.js │ │ ├── varargs_overload_runme.js │ │ ├── varargs_runme.js │ │ ├── virtual_derivation_runme.js │ │ ├── virtual_poly_runme.js │ │ └── voidtest_runme.js │ ├── javascript_lib_arrays.i │ ├── keyword_rename.i │ ├── keyword_rename_c.i │ ├── kind.i │ ├── kwargs_feature.i │ ├── langobj.i │ ├── lextype.i │ ├── li_attribute.i │ ├── li_attribute_template.i │ ├── li_boost_intrusive_ptr.i │ ├── li_boost_shared_ptr.i │ ├── li_boost_shared_ptr_attribute.i │ ├── li_boost_shared_ptr_bits.i │ ├── li_boost_shared_ptr_director.i │ ├── li_boost_shared_ptr_template.i │ ├── li_carrays.i │ ├── li_carrays_cpp.i │ ├── li_cdata.i │ ├── li_cdata_carrays.i │ ├── li_cdata_carrays_cpp.i │ ├── li_cdata_cpp.i │ ├── li_cmalloc.i │ ├── li_constraints.i │ ├── li_cpointer.i │ ├── li_cpointer_cpp.i │ ├── li_cstring.i │ ├── li_cwstring.i │ ├── li_factory.i │ ├── li_implicit.i │ ├── li_math.i │ ├── li_reference.i │ ├── li_std_auto_ptr.i │ ├── li_std_combinations.i │ ├── li_std_container_typemaps.i │ ├── li_std_containers_int.i │ ├── li_std_containers_overload.i │ ├── li_std_deque.i │ ├── li_std_except.i │ ├── li_std_except_as_class.i │ ├── li_std_functors.i │ ├── li_std_list.i │ ├── li_std_map.i │ ├── li_std_map_member.i │ ├── li_std_multimap.i │ ├── li_std_pair.i │ ├── li_std_pair_extra.i │ ├── li_std_pair_lang_object.i │ ├── li_std_pair_using.i │ ├── li_std_queue.i │ ├── li_std_set.i │ ├── li_std_stack.i │ ├── li_std_stream.i │ ├── li_std_string.i │ ├── li_std_string_extra.i │ ├── li_std_vector.i │ ├── li_std_vector_back_reference.i │ ├── li_std_vector_enum.i │ ├── li_std_vector_extra.i │ ├── li_std_vector_member_var.i │ ├── li_std_vector_ptr.i │ ├── li_std_vector_vector.i │ ├── li_std_vectora.i │ ├── li_std_wstream.i │ ├── li_std_wstring.h │ ├── li_std_wstring.i │ ├── li_std_wstring_inherit.i │ ├── li_stdint.i │ ├── li_swigtype_inout.i │ ├── li_typemaps.i │ ├── li_typemaps_apply.i │ ├── li_windows.i │ ├── list_vector.i │ ├── long_long.i │ ├── long_long_apply.i │ ├── lua │ │ ├── Makefile.in │ │ ├── abstract_access_runme.lua │ │ ├── argcargvtest_runme.lua │ │ ├── array_member_runme.lua │ │ ├── arrays_global_runme.lua │ │ ├── catches_strings_runme.lua │ │ ├── char_strings_runme.lua │ │ ├── chartest_runme.lua │ │ ├── cpp11_move_typemaps_runme.lua │ │ ├── cpp11_rvalue_reference_move_runme.lua │ │ ├── cpp11_std_unique_ptr_runme.lua │ │ ├── cpp11_strongly_typed_enumerations_runme.lua │ │ ├── cpp17_string_view_runme.lua │ │ ├── cpp_basic_runme.lua │ │ ├── cpp_enum_runme.lua │ │ ├── cpp_namespace_runme.lua │ │ ├── cpp_nodefault_runme.lua │ │ ├── cpp_static_runme.lua │ │ ├── cpp_typedef_runme.lua │ │ ├── disown_runme.lua │ │ ├── dynamic_cast_runme.lua │ │ ├── enum_plus_runme.lua │ │ ├── enum_rename_runme.lua │ │ ├── enum_scope_template_runme.lua │ │ ├── enum_template_runme.lua │ │ ├── enums_runme.lua │ │ ├── equality_runme.lua │ │ ├── exception_memory_leak_runme.lua │ │ ├── exception_order_runme.lua │ │ ├── exception_partial_info_runme.lua │ │ ├── extend_constructor_destructor_runme.lua │ │ ├── extend_placement_runme.lua │ │ ├── extend_runme.lua │ │ ├── extend_template_runme.lua │ │ ├── extend_typedef_class_runme.lua │ │ ├── extend_variable_runme.lua │ │ ├── friends_runme.lua │ │ ├── funcptr_cpp_runme.lua │ │ ├── fvirtual_runme.lua │ │ ├── global_namespace_runme.lua │ │ ├── global_vars_runme.lua │ │ ├── grouping_runme.lua │ │ ├── iadd_runme.lua │ │ ├── import.lua │ │ ├── import_nomodule_runme.lua │ │ ├── imports_runme.lua │ │ ├── inherit_missing_runme.lua │ │ ├── keyword_rename_c_runme.lua │ │ ├── keyword_rename_runme.lua │ │ ├── li_carrays_cpp_runme.lua │ │ ├── li_carrays_runme.lua │ │ ├── li_constraints_runme.lua │ │ ├── li_factory_runme.lua │ │ ├── li_std_auto_ptr_runme.lua │ │ ├── li_std_except_runme.lua │ │ ├── li_std_pair_runme.lua │ │ ├── li_std_string_runme.lua │ │ ├── li_std_vector_runme.lua │ │ ├── li_typemaps_runme.lua │ │ ├── lua_inherit_getitem_runme.lua │ │ ├── lua_lightuserdata_runme.lua │ │ ├── lua_no_module_global_runme.lua │ │ ├── member_pointer_runme.lua │ │ ├── mod_runme.lua │ │ ├── multi_import_runme.lua │ │ ├── nested_workaround_runme.lua │ │ ├── newobject1_runme.lua │ │ ├── newobject2_runme.lua │ │ ├── nspace_extend_runme.lua │ │ ├── nspace_runme.lua │ │ ├── operator_overload_runme.lua │ │ ├── overload_complicated_runme.lua │ │ ├── overload_null_runme.lua │ │ ├── overload_simple_runme.lua │ │ ├── overload_template_fast_runme.lua │ │ ├── overload_template_runme.lua │ │ ├── pointer_reference_runme.lua │ │ ├── primitive_ref_runme.lua │ │ ├── refcount_runme.lua │ │ ├── rename_simple_runme.lua │ │ ├── ret_by_value_runme.lua │ │ ├── sizet_runme.lua │ │ ├── smart_pointer_extend_runme.lua │ │ ├── smart_pointer_inherit_runme.lua │ │ ├── smart_pointer_multi_runme.lua │ │ ├── smart_pointer_not_runme.lua │ │ ├── smart_pointer_overload_runme.lua │ │ ├── smart_pointer_rename_runme.lua │ │ ├── smart_pointer_simple_runme.lua │ │ ├── smart_pointer_templatemethods_runme.lua │ │ ├── static_const_member_2_runme.lua │ │ ├── static_const_member_runme.lua │ │ ├── template_construct_runme.lua │ │ ├── template_default_arg_runme.lua │ │ ├── template_extend1_runme.lua │ │ ├── template_extend2_runme.lua │ │ ├── template_inherit_runme.lua │ │ ├── template_static_runme.lua │ │ ├── valuewrapper_runme.lua │ │ ├── varargs_runme.lua │ │ └── voidtest_runme.lua │ ├── lua_inherit_getitem.i │ ├── lua_lightuserdata.i │ ├── lua_no_module_global.i │ ├── member_funcptr_galore.i │ ├── member_pointer.i │ ├── member_pointer_const.i │ ├── member_template.i │ ├── memberin1.i │ ├── memberin_extend.i │ ├── memberin_extend_c.i │ ├── minherit.i │ ├── minherit2.i │ ├── mixed_types.i │ ├── mod.h │ ├── mod.list │ ├── mod_a.i │ ├── mod_b.i │ ├── multi_import.h │ ├── multi_import.list │ ├── multi_import_a.i │ ├── multi_import_b.i │ ├── multi_import_c.i │ ├── multi_import_d.i │ ├── multiple_inheritance.i │ ├── multiple_inheritance_abstract.i │ ├── multiple_inheritance_interfaces.i │ ├── multiple_inheritance_nspace.i │ ├── multiple_inheritance_overload.i │ ├── multiple_inheritance_shared_ptr.i │ ├── multivalue.i │ ├── mzscheme │ │ ├── Makefile.in │ │ ├── README │ │ ├── argcargvtest_runme.scm │ │ ├── casts_runme.scm │ │ ├── catches_strings_runme.scm │ │ ├── char_constant_runme.scm │ │ ├── cpp11_move_typemaps_runme.scm │ │ ├── cpp11_rvalue_reference_move_runme.scm │ │ ├── cpp11_std_unique_ptr_runme.scm │ │ ├── imports_runme.scm │ │ ├── integers_runme.scm │ │ ├── li_std_auto_ptr_runme.scm │ │ ├── name_runme.scm │ │ ├── newobject1_runme.scm │ │ ├── null_pointer_runme.scm │ │ └── unions_runme.scm │ ├── name.i │ ├── name_cxx.i │ ├── name_warnings.i │ ├── namespace_chase.i │ ├── namespace_class.i │ ├── namespace_enum.i │ ├── namespace_extend.i │ ├── namespace_forward_declaration.i │ ├── namespace_nested.i │ ├── namespace_spaces.i │ ├── namespace_struct.i │ ├── namespace_template.i │ ├── namespace_typedef_class.i │ ├── namespace_typemap.i │ ├── namespace_union.i │ ├── namespace_virtual_method.i │ ├── native_directive.i │ ├── naturalvar.i │ ├── naturalvar_more.i │ ├── naturalvar_onoff.i │ ├── nested.i │ ├── nested_class.i │ ├── nested_comment.i │ ├── nested_directors.i │ ├── nested_extend_c.i │ ├── nested_ignore.i │ ├── nested_in_template.i │ ├── nested_inheritance_interface.i │ ├── nested_private.i │ ├── nested_scope.i │ ├── nested_scope_flat.i │ ├── nested_structs.i │ ├── nested_template_base.i │ ├── nested_workaround.i │ ├── newobject1.i │ ├── newobject2.i │ ├── newobject3.i │ ├── not_c_keywords.i │ ├── nspace.i │ ├── nspace_extend.i │ ├── null_pointer.i │ ├── ocaml │ │ ├── Makefile.in │ │ ├── README │ │ ├── abstract_access_runme.ml │ │ ├── abstract_typedef2_runme.ml │ │ ├── abstract_typedef_runme.ml │ │ ├── abstract_virtual_runme.ml │ │ ├── aggregate_runme.ml │ │ ├── allowexcept_runme.ml │ │ ├── cast_operator_runme.ml │ │ ├── catches_runme.ml │ │ ├── catches_strings_runme.ml │ │ ├── char_binary_runme.ml │ │ ├── char_constant_runme.ml │ │ ├── chartest_runme.ml │ │ ├── class_ignore_runme.ml │ │ ├── class_scope_weird_runme.ml │ │ ├── constover_runme.ml │ │ ├── constructor_rename_runme.ml │ │ ├── conversion_runme.ml │ │ ├── cpp_nodefault_runme.ml │ │ ├── cpp_static_runme.ml │ │ ├── default_arg_values_runme.ml │ │ ├── default_args_runme.ml │ │ ├── director_default_runme.ml │ │ ├── director_exception_catches_runme.ml │ │ ├── director_exception_nothrow_runme.ml │ │ ├── director_exception_runme.ml │ │ ├── director_frob_runme.ml │ │ ├── director_ignore_runme.ml │ │ ├── director_pass_by_value_runme.ml │ │ ├── director_unroll_runme.ml │ │ ├── dynamic_cast_runme.ml │ │ ├── enum_rename_runme.ml │ │ ├── exception_classname_runme.ml │ │ ├── exception_order_runme.ml │ │ ├── extend_constructor_destructor_runme.ml │ │ ├── extend_placement_runme.ml │ │ ├── extend_runme.ml │ │ ├── extend_special_variables_runme.ml │ │ ├── extend_template_method_runme.ml │ │ ├── extend_template_runme.ml │ │ ├── extend_typedef_class_runme.ml │ │ ├── extern_c_runme.ml │ │ ├── funcptr_cpp_runme.ml │ │ ├── fvirtual_runme.ml │ │ ├── global_ns_arg_runme.ml │ │ ├── global_vars_runme.ml │ │ ├── ignore_parameter_runme.ml │ │ ├── imports_runme.ml │ │ ├── inctest_runme.ml │ │ ├── inherit_missing_runme.ml │ │ ├── inout_runme.ml │ │ ├── li_cpointer_cpp_runme.ml │ │ ├── li_std_except_runme.ml │ │ ├── li_std_string_runme.ml │ │ ├── li_std_vector_runme.ml │ │ ├── makedebugtop │ │ ├── memberin_extend_runme.ml │ │ ├── minherit_runme.ml │ │ ├── mod_runme.ml │ │ ├── multivalue_runme.ml │ │ ├── name_runme.ml │ │ ├── namespace_virtual_method_runme.ml │ │ ├── newobject1_runme.ml │ │ ├── newobject2_runme.ml │ │ ├── overload_bool_runme.ml │ │ ├── overload_copy_runme.ml │ │ ├── overload_extend_runme.ml │ │ ├── overload_method_runme.ml │ │ ├── overload_numeric_runme.ml │ │ ├── overload_polymorphic_runme.ml │ │ ├── overload_rename_runme.ml │ │ ├── overload_subtype_runme.ml │ │ ├── overload_template_runme.ml │ │ ├── primitive_ref_runme.ml │ │ ├── reference_global_vars_runme.ml │ │ ├── rename_predicates_runme.ml │ │ ├── rename_rstrip_encoder_runme.ml │ │ ├── sizet_runme.ml │ │ ├── sneaky1_runme.ml │ │ ├── special_variable_macros_runme.ml │ │ ├── special_variables_runme.ml │ │ ├── static_const_member_runme.ml │ │ ├── string_simple_runme.ml │ │ ├── struct_value_runme.ml │ │ ├── swig_exception_runme.ml │ │ ├── template_default_arg_overloaded_extend_runme.ml │ │ ├── template_default_arg_runme.ml │ │ ├── template_extend1_runme.ml │ │ ├── template_extend2_runme.ml │ │ ├── template_inherit_runme.ml │ │ ├── template_methods_runme.ml │ │ ├── template_opaque_runme.ml │ │ ├── template_ref_type_runme.ml │ │ ├── template_rename_runme.ml │ │ ├── template_tbase_template_runme.ml │ │ ├── throw_exception_runme.ml │ │ ├── typedef_class_runme.ml │ │ ├── typedef_classforward_same_name_runme.ml │ │ ├── typedef_inherit_runme.ml │ │ ├── typedef_mptr_runme.ml │ │ ├── typedef_reference_runme.ml │ │ ├── typemap_arrays_runme.ml │ │ ├── typemap_delete_runme.ml │ │ ├── typename_runme.ml │ │ ├── types_directive_runme.ml │ │ ├── unions_runme.ml │ │ ├── using1_runme.ml │ │ ├── using2_runme.ml │ │ ├── using_extend_runme.ml │ │ ├── using_inherit_runme.ml │ │ ├── using_pointers_runme.ml │ │ ├── using_private_runme.ml │ │ ├── using_protected_runme.ml │ │ ├── valuewrapper_runme.ml │ │ ├── varargs_overload_runme.ml │ │ ├── varargs_runme.ml │ │ ├── voidtest_runme.ml │ │ └── wrapmacro_runme.ml │ ├── octave │ │ ├── Makefile.in │ │ ├── abstract_access_runme.m │ │ ├── abstract_typedef2_runme.m │ │ ├── abstract_typedef_runme.m │ │ ├── abstract_virtual_runme.m │ │ ├── argcargvtest_runme.m │ │ ├── array_member_runme.m │ │ ├── arrays_global_runme.m │ │ ├── callback_runme.m │ │ ├── catches_strings_runme.m │ │ ├── char_binary_runme.m │ │ ├── class_ignore_runme.m │ │ ├── class_scope_weird_runme.m │ │ ├── compactdefaultargs_runme.m │ │ ├── complextest_runme.m │ │ ├── constover_runme.m │ │ ├── constructor_copy_runme.m │ │ ├── contract_runme.m │ │ ├── cpp11_move_typemaps_runme.m │ │ ├── cpp11_rvalue_reference_move_runme.m │ │ ├── cpp11_std_unique_ptr_runme.m │ │ ├── cpp11_strongly_typed_enumerations_runme.m │ │ ├── cpp_enum_runme.m │ │ ├── cpp_namespace_runme.m │ │ ├── default_args_runme.m │ │ ├── default_constructor_runme.m │ │ ├── director_abstract_runme.m │ │ ├── director_basic_runme.m │ │ ├── director_classic_runme.m │ │ ├── director_default_runme.m │ │ ├── director_detect_runme.m │ │ ├── director_enum_runme.m │ │ ├── director_extend_runme.m │ │ ├── director_frob_runme.m │ │ ├── director_nested_runme.m │ │ ├── director_stl_runme.m │ │ ├── director_string_runme.m │ │ ├── director_unroll_runme.m │ │ ├── director_wstring_runme.m │ │ ├── dynamic_cast_runme.m │ │ ├── empty_c_runme.m │ │ ├── empty_runme.m │ │ ├── enum_template_runme.m │ │ ├── enums_runme.m │ │ ├── exception_order_runme.m │ │ ├── extend_placement_runme.m │ │ ├── extend_template_ns_runme.m │ │ ├── extend_template_runme.m │ │ ├── extend_variable_runme.m │ │ ├── file_test_runme.m │ │ ├── friends_runme.m │ │ ├── fvirtual_runme.m │ │ ├── global_ns_arg_runme.m │ │ ├── grouping_runme.m │ │ ├── iadd_runme.m │ │ ├── import_nomodule_runme.m │ │ ├── imports_runme.m │ │ ├── inctest_runme.m │ │ ├── inherit_missing_runme.m │ │ ├── inout_runme.m │ │ ├── inplaceadd_runme.m │ │ ├── input_runme.m │ │ ├── li_attribute_runme.m │ │ ├── li_boost_shared_ptr_runme.m │ │ ├── li_carrays_cpp_runme.m │ │ ├── li_carrays_runme.m │ │ ├── li_cmalloc_runme.m │ │ ├── li_constraints_runme.m │ │ ├── li_cpointer_cpp_runme.m │ │ ├── li_cpointer_runme.m │ │ ├── li_cstring_runme.m │ │ ├── li_cwstring_runme.m │ │ ├── li_factory_runme.m │ │ ├── li_implicit_runme.m │ │ ├── li_std_auto_ptr_runme.m │ │ ├── li_std_containers_overload_runme.m │ │ ├── li_std_pair_extra_runme.m │ │ ├── li_std_set_runme.m │ │ ├── li_std_stream_runme.m │ │ ├── li_std_string_extra_runme.m │ │ ├── li_std_vector_enum_runme.m │ │ ├── li_std_vector_runme.m │ │ ├── li_std_wstream_runme.m │ │ ├── member_pointer_runme.m │ │ ├── minherit_runme.m │ │ ├── mod_runme.m │ │ ├── multi_import_runme.m │ │ ├── namespace_class_runme.m │ │ ├── namespace_typemap_runme.m │ │ ├── namespace_virtual_method_runme.m │ │ ├── naturalvar_runme.m │ │ ├── nested_structs_runme.m │ │ ├── nondynamic_runme.m │ │ ├── null_pointer_runme.m │ │ ├── octave_cell_deref_runme.m │ │ ├── octave_dim_runme.m │ │ ├── octave_empty.c │ │ ├── overload_complicated_runme.m │ │ ├── overload_copy_runme.m │ │ ├── overload_extend2_runme.m │ │ ├── overload_extend_c_runme.m │ │ ├── overload_extend_runme.m │ │ ├── overload_null_runme.m │ │ ├── overload_rename_runme.m │ │ ├── overload_simple_cast_runme.m │ │ ├── overload_simple_runme.m │ │ ├── overload_subtype_runme.m │ │ ├── overload_template_fast_runme.m │ │ ├── overload_template_runme.m │ │ ├── preproc_constants_runme.m │ │ ├── preproc_runme.m │ │ ├── primitive_ref_runme.m │ │ ├── profiletest_runme.m │ │ ├── refcount_runme.m │ │ ├── reference_global_vars_runme.m │ │ ├── rename_scope_runme.m │ │ ├── ret_by_value_runme.m │ │ ├── return_const_value_runme.m │ │ ├── samename_runme.m │ │ ├── smart_pointer_extend_runme.m │ │ ├── smart_pointer_member_runme.m │ │ ├── smart_pointer_multi_runme.m │ │ ├── smart_pointer_multi_typedef_runme.m │ │ ├── smart_pointer_not_runme.m │ │ ├── smart_pointer_overload_runme.m │ │ ├── smart_pointer_rename_runme.m │ │ ├── smart_pointer_simple_runme.m │ │ ├── smart_pointer_templatevariables_runme.m │ │ ├── smart_pointer_typedef_runme.m │ │ ├── sneaky1_runme.m │ │ ├── static_const_member_2_runme.m │ │ ├── std_containers_runme.m │ │ ├── struct_rename_runme.m │ │ ├── struct_value_runme.m │ │ ├── swigobject_runme.m │ │ ├── template_construct_runme.m │ │ ├── template_default_arg_runme.m │ │ ├── template_extend1_runme.m │ │ ├── template_extend2_runme.m │ │ ├── template_inherit_runme.m │ │ ├── template_matrix_runme.m │ │ ├── template_ns4_runme.m │ │ ├── template_ns_runme.m │ │ ├── template_opaque_runme.m │ │ ├── template_ref_type_runme.m │ │ ├── template_rename_runme.m │ │ ├── template_static_runme.m │ │ ├── template_tbase_template_runme.m │ │ ├── template_type_namespace_runme.m │ │ ├── template_typedef_cplx2_runme.m │ │ ├── template_typedef_cplx3_runme.m │ │ ├── template_typedef_cplx4_runme.m │ │ ├── template_typedef_cplx_runme.m │ │ ├── template_typedef_import_runme.m │ │ ├── template_typedef_runme.m │ │ ├── typedef_class_runme.m │ │ ├── typedef_inherit_runme.m │ │ ├── typedef_scope_runme.m │ │ ├── typemap_namespace_runme.m │ │ ├── typemap_ns_using_runme.m │ │ ├── typename_runme.m │ │ ├── types_directive_runme.m │ │ ├── unions_runme.m │ │ ├── using1_runme.m │ │ ├── using2_runme.m │ │ ├── using_composition_runme.m │ │ ├── using_extend_runme.m │ │ ├── using_inherit_runme.m │ │ ├── using_private_runme.m │ │ ├── using_protected_runme.m │ │ ├── varargs_runme.m │ │ ├── virtual_derivation_runme.m │ │ ├── virtual_poly_runme.m │ │ ├── voidtest_runme.m │ │ └── wrapmacro_runme.m │ ├── octave_cell_deref.i │ ├── octave_dim.i │ ├── operator_overload.i │ ├── operator_overload_break.i │ ├── operator_pointer_ref.i │ ├── operbool.i │ ├── ordering.i │ ├── overload_arrays.i │ ├── overload_bool.i │ ├── overload_complicated.i │ ├── overload_copy.i │ ├── overload_extend.i │ ├── overload_extend2.i │ ├── overload_extend_c.i │ ├── overload_method.i │ ├── overload_null.i │ ├── overload_numeric.i │ ├── overload_polymorphic.i │ ├── overload_rename.i │ ├── overload_return_type.i │ ├── overload_simple.i │ ├── overload_subtype.i │ ├── overload_template.i │ ├── overload_template_fast.i │ ├── packageoption.h │ ├── packageoption.list │ ├── packageoption_a.i │ ├── packageoption_b.i │ ├── packageoption_c.i │ ├── perl5 │ │ ├── Makefile.in │ │ ├── README │ │ ├── aggregate_runme.pl │ │ ├── apply_signed_char_runme.pl │ │ ├── apply_strings_runme.pl │ │ ├── argcargvtest_runme.pl │ │ ├── array_member_runme.pl │ │ ├── catches_strings_runme.pl │ │ ├── char_binary_runme.pl │ │ ├── char_strings_runme.pl │ │ ├── class_ignore_runme.pl │ │ ├── contract_runme.pl │ │ ├── cpp11_move_typemaps_runme.pl │ │ ├── cpp11_rvalue_reference_move_runme.pl │ │ ├── cpp11_std_unique_ptr_runme.pl │ │ ├── cpp11_strongly_typed_enumerations_runme.pl │ │ ├── cpp17_director_string_view_runme.pl │ │ ├── cpp17_string_view_runme.pl │ │ ├── default_args_runme.pl │ │ ├── default_constructor_runme.pl │ │ ├── director_abstract_runme.pl │ │ ├── director_alternating_runme.pl │ │ ├── director_basic_runme.pl │ │ ├── director_classes_runme.pl │ │ ├── director_classic_runme.pl │ │ ├── director_constructor_runme.pl │ │ ├── director_default_runme.pl │ │ ├── director_detect_runme.pl │ │ ├── director_enum_runme.pl │ │ ├── director_exception_runme.pl │ │ ├── director_extend_runme.pl │ │ ├── director_finalizer_runme.pl │ │ ├── director_frob_runme.pl │ │ ├── director_ignore_runme.pl │ │ ├── director_nested_runme.pl │ │ ├── director_primitives_runme.pl │ │ ├── director_protected_runme.pl │ │ ├── director_string_runme.pl │ │ ├── director_unroll_runme.pl │ │ ├── director_wombat_runme.pl │ │ ├── disown_runme.pl │ │ ├── dynamic_cast_runme.pl │ │ ├── enum_template_runme.pl │ │ ├── enum_thorough_runme.pl │ │ ├── exception_order_runme.pl │ │ ├── global_vars_runme.pl │ │ ├── grouping_runme.pl │ │ ├── ignore_parameter_runme.pl │ │ ├── import_nomodule_runme.pl │ │ ├── imports_runme.pl │ │ ├── inctest_runme.pl │ │ ├── inherit_missing_runme.pl │ │ ├── inherit_runme.pl │ │ ├── li_carrays_cpp_runme.pl │ │ ├── li_carrays_runme.pl │ │ ├── li_cdata_carrays_cpp_runme.pl │ │ ├── li_cdata_carrays_runme.pl │ │ ├── li_constraints_runme.pl │ │ ├── li_reference_runme.pl │ │ ├── li_std_auto_ptr_runme.pl │ │ ├── li_std_except_runme.pl │ │ ├── li_std_string_runme.pl │ │ ├── li_typemaps_runme.pl │ │ ├── member_pointer_runme.pl │ │ ├── minherit_runme.pl │ │ ├── multiple_inheritance_runme.pl │ │ ├── multivalue_runme.pl │ │ ├── naturalvar_runme.pl │ │ ├── operator_overload_break_runme.pl │ │ ├── operator_overload_runme.pl │ │ ├── overload_copy_runme.pl │ │ ├── overload_null_runme.pl │ │ ├── overload_simple_runme.pl │ │ ├── packageoption_runme.pl │ │ ├── preproc_runme.pl │ │ ├── primitive_ref_runme.pl │ │ ├── primitive_types_runme.pl │ │ ├── profiletest_runme.pl │ │ ├── reference_global_vars_runme.pl │ │ ├── rename_scope_runme.pl │ │ ├── ret_by_value_runme.pl │ │ ├── return_const_value_runme.pl │ │ ├── run-perl-test.pl │ │ ├── scilab_multivalue_runme.pl │ │ ├── sizet_runme.pl │ │ ├── sneaky1_runme.pl │ │ ├── template_default_arg_runme.pl │ │ ├── template_ref_type_runme.pl │ │ ├── template_typedef_cplx2_runme.pl │ │ ├── template_typedef_cplx3_runme.pl │ │ ├── template_typedef_cplx_runme.pl │ │ ├── typedef_class_runme.pl │ │ ├── typemap_namespace_runme.pl │ │ ├── typename_runme.pl │ │ ├── unions_runme.pl │ │ ├── using1_runme.pl │ │ ├── using2_runme.pl │ │ ├── varargs_runme.pl │ │ ├── virtual_poly_runme.pl │ │ ├── voidtest_runme.pl │ │ └── wrapmacro_runme.pl │ ├── php │ │ ├── Makefile.in │ │ ├── abstract_inherit_ok_runme.php │ │ ├── abstract_inherit_runme.php │ │ ├── add_link_runme.php │ │ ├── argcargvtest_runme.php │ │ ├── argout_runme.php │ │ ├── arrays_global_runme.php │ │ ├── arrays_global_twodim_runme.php │ │ ├── arrays_runme.php │ │ ├── arrays_scope_runme.php │ │ ├── callback_runme.php │ │ ├── casts_runme.php │ │ ├── catches_strings_runme.php │ │ ├── char_binary_runme.php │ │ ├── char_strings_runme.php │ │ ├── class_ignore_runme.php │ │ ├── conversion_namespace_runme.php │ │ ├── conversion_ns_template_runme.php │ │ ├── conversion_runme.php │ │ ├── cpp11_attribute_specifiers_runme.php │ │ ├── cpp11_auto_variable_runme.php │ │ ├── cpp11_decltype_runme.php │ │ ├── cpp11_final_directors_runme.php │ │ ├── cpp11_move_typemaps_runme.php │ │ ├── cpp11_rvalue_reference_move_runme.php │ │ ├── cpp11_std_unique_ptr_runme.php │ │ ├── cpp11_strongly_typed_enumerations_runme.php │ │ ├── cpp14_auto_return_type_runme.php │ │ ├── cpp17_director_string_view_runme.php │ │ ├── cpp17_string_view_runme.php │ │ ├── cpp20_spaceship_operator_runme.php │ │ ├── cpp_basic_runme.php │ │ ├── cpp_static_runme.php │ │ ├── default_args_runme.php │ │ ├── director_abstract_runme.php │ │ ├── director_alternating_runme.php │ │ ├── director_basic_runme.php │ │ ├── director_classes_runme.php │ │ ├── director_classic_runme.php │ │ ├── director_default_runme.php │ │ ├── director_detect_runme.php │ │ ├── director_enum_runme.php │ │ ├── director_exception_catches_runme.php │ │ ├── director_exception_nothrow_runme.php │ │ ├── director_exception_runme.php │ │ ├── director_extend_runme.php │ │ ├── director_finalizer_runme.php │ │ ├── director_frob_runme.php │ │ ├── director_ignore_runme.php │ │ ├── director_nested_runme.php │ │ ├── director_overload_runme.php │ │ ├── director_ownership_runme.php │ │ ├── director_pass_by_value_runme.php │ │ ├── director_profile_runme.php │ │ ├── director_protected_runme.php │ │ ├── director_stl_runme.php │ │ ├── director_string_runme.php │ │ ├── director_thread_runme.php │ │ ├── director_unroll_runme.php │ │ ├── director_wombat_runme.php │ │ ├── enum_scope_template_runme.php │ │ ├── evil_diamond_ns_runme.php │ │ ├── evil_diamond_prop_runme.php │ │ ├── evil_diamond_runme.php │ │ ├── exception_memory_leak_runme.php │ │ ├── exception_order_runme.php │ │ ├── extend_template_ns_runme.php │ │ ├── extend_template_runme.php │ │ ├── friends_runme.php │ │ ├── global_vars_runme.php │ │ ├── grouping_runme.php │ │ ├── ignore_parameter_runme.php │ │ ├── import_nomodule_runme.php │ │ ├── li_carrays_cpp_runme.php │ │ ├── li_carrays_runme.php │ │ ├── li_constraints_runme.php │ │ ├── li_factory_runme.php │ │ ├── li_std_auto_ptr_runme.php │ │ ├── li_std_string_runme.php │ │ ├── li_std_vector_member_var_runme.php │ │ ├── long_long_runme.php │ │ ├── member_pointer_const_runme.php │ │ ├── mod_runme.php │ │ ├── multivalue_runme.php │ │ ├── newobject1_runme.php │ │ ├── newobject2_runme.php │ │ ├── newobject3_runme.php │ │ ├── overload_bool_runme.php │ │ ├── overload_complicated_runme.php │ │ ├── overload_copy_runme.php │ │ ├── overload_extend2_runme.php │ │ ├── overload_extend_c_runme.php │ │ ├── overload_extend_runme.php │ │ ├── overload_null_runme.php │ │ ├── overload_numeric_runme.php │ │ ├── overload_polymorphic_runme.php │ │ ├── overload_rename_runme.php │ │ ├── overload_return_type_runme.php │ │ ├── overload_simple_runme.php │ │ ├── overload_subtype_runme.php │ │ ├── overload_template_fast_runme.php │ │ ├── overload_template_runme.php │ │ ├── php_iterator_runme.php │ │ ├── php_pragma_runme.php │ │ ├── pointer_reference_runme.php │ │ ├── prefix_runme.php │ │ ├── preproc_constants_c_runme.php │ │ ├── preproc_constants_runme.php │ │ ├── primitive_ref_runme.php │ │ ├── rename_camel_runme.php │ │ ├── rename_scope_runme.php │ │ ├── skel.php │ │ ├── smart_pointer_rename_runme.php │ │ ├── smart_pointer_static_runme.php │ │ ├── swig_exception_runme.php │ │ ├── sym_runme.php │ │ ├── template_arg_typename_runme.php │ │ ├── template_construct_runme.php │ │ ├── tests.php │ │ ├── threads_exception_runme.php │ │ ├── typedef_reference_runme.php │ │ ├── typemap_ns_using_runme.php │ │ ├── using1_runme.php │ │ ├── using2_runme.php │ │ ├── valuewrapper_base_runme.php │ │ ├── virtual_vs_nonvirtual_base_runme.php │ │ └── wrapmacro_runme.php │ ├── php_iterator.i │ ├── php_namewarn_rename.i │ ├── php_pragma.i │ ├── pointer_in_out.i │ ├── pointer_reference.i │ ├── prefix.i │ ├── preproc.i │ ├── preproc_constants.i │ ├── preproc_constants_c.i │ ├── preproc_cpp.i │ ├── preproc_defined.i │ ├── preproc_expr.i │ ├── preproc_gcc_output.h │ ├── preproc_gcc_output.i │ ├── preproc_include.i │ ├── preproc_include_a.h │ ├── preproc_include_b.h │ ├── preproc_include_c.h │ ├── preproc_include_d withspace.h │ ├── preproc_include_e withspace.h │ ├── preproc_include_f withspace.h │ ├── preproc_include_g.h │ ├── preproc_include_h1.i │ ├── preproc_include_h2.i │ ├── preproc_include_h3.i │ ├── preproc_line_file.i │ ├── preproc_predefined.h │ ├── preproc_predefined.i │ ├── primitive_ref.i │ ├── primitive_types.i │ ├── private_assign.i │ ├── profiletest.i │ ├── protected_rename.i │ ├── proxycode.i │ ├── pure_virtual.i │ ├── python │ │ ├── Makefile.in │ │ ├── README │ │ ├── abstract_access_runme.py │ │ ├── abstract_basecast_runme.py │ │ ├── abstract_typedef2_runme.py │ │ ├── abstract_typedef_runme.py │ │ ├── abstract_virtual_runme.py │ │ ├── argcargvtest_runme.py │ │ ├── array_member_runme.py │ │ ├── arrays_global_runme.py │ │ ├── autodoc_runme.py │ │ ├── callback_runme.py │ │ ├── catches_strings_runme.py │ │ ├── ccomplextest_runme.py │ │ ├── char_binary_runme.py │ │ ├── class_ignore_runme.py │ │ ├── class_scope_weird_runme.py │ │ ├── comment_verifier.py │ │ ├── compactdefaultargs_runme.py │ │ ├── complextest_runme.py │ │ ├── constant_directive_runme.py │ │ ├── constover_runme.py │ │ ├── constructor_copy_non_const_runme.py │ │ ├── constructor_copy_runme.py │ │ ├── constructor_rename_runme.py │ │ ├── contract_runme.py │ │ ├── copyctor_runme.py │ │ ├── cpp11_alternate_function_syntax_runme.py │ │ ├── cpp11_decltype_runme.py │ │ ├── cpp11_director_using_constructor_runme.py │ │ ├── cpp11_final_class_runme.py │ │ ├── cpp11_final_directors_runme.py │ │ ├── cpp11_function_objects_runme.py │ │ ├── cpp11_hash_tables_runme.py │ │ ├── cpp11_inheriting_constructors_runme.py │ │ ├── cpp11_initializer_list_extend_runme.py │ │ ├── cpp11_initializer_list_runme.py │ │ ├── cpp11_move_only_runme.py │ │ ├── cpp11_move_typemaps_runme.py │ │ ├── cpp11_null_pointer_constant_runme.py │ │ ├── cpp11_raw_string_literals_runme.py │ │ ├── cpp11_ref_qualifiers_runme.py │ │ ├── cpp11_ref_qualifiers_rvalue_unignore_runme.py │ │ ├── cpp11_result_of_runme.py │ │ ├── cpp11_rvalue_reference_move_runme.py │ │ ├── cpp11_rvalue_reference_runme.py │ │ ├── cpp11_shared_ptr_overload_runme.py │ │ ├── cpp11_shared_ptr_template_upcast_runme.py │ │ ├── cpp11_shared_ptr_upcast_runme.py │ │ ├── cpp11_std_array_runme.py │ │ ├── cpp11_std_unique_ptr_runme.py │ │ ├── cpp11_strongly_typed_enumerations_runme.py │ │ ├── cpp11_template_explicit_runme.py │ │ ├── cpp11_template_typedefs_runme.py │ │ ├── cpp11_thread_local_runme.py │ │ ├── cpp11_type_aliasing_runme.py │ │ ├── cpp11_type_traits_runme.py │ │ ├── cpp11_uniform_initialization_runme.py │ │ ├── cpp11_using_constructor_runme.py │ │ ├── cpp11_variadic_function_templates_runme.py │ │ ├── cpp11_variadic_templates_runme.py │ │ ├── cpp14_auto_return_type_runme.py │ │ ├── cpp14_binary_integer_literals_runme.py │ │ ├── cpp17_director_string_view_runme.py │ │ ├── cpp17_hex_floating_literals_runme.py │ │ ├── cpp17_nested_namespaces_runme.py │ │ ├── cpp17_string_view_runme.py │ │ ├── cpp17_u8_char_literals_runme.py │ │ ├── cpp20_spaceship_operator_runme.py │ │ ├── cpp_enum_runme.py │ │ ├── cpp_namespace_runme.py │ │ ├── cpp_parameters_runme.py │ │ ├── cpp_static_runme.py │ │ ├── default_arg_values_runme.py │ │ ├── default_args_c_runme.py │ │ ├── default_args_runme.py │ │ ├── default_constructor_runme.py │ │ ├── director_abstract_runme.py │ │ ├── director_alternating_runme.py │ │ ├── director_basic_runme.py │ │ ├── director_classic_runme.py │ │ ├── director_comparison_operators_runme.py │ │ ├── director_default_runme.py │ │ ├── director_detect_runme.py │ │ ├── director_enum_runme.py │ │ ├── director_exception_runme.py │ │ ├── director_extend_runme.py │ │ ├── director_finalizer_runme.py │ │ ├── director_frob_runme.py │ │ ├── director_keywords_runme.py │ │ ├── director_multiple_inheritance_runme.py │ │ ├── director_nested_runme.py │ │ ├── director_pass_by_value_runme.py │ │ ├── director_profile_runme.py │ │ ├── director_property_runme.py │ │ ├── director_protected_runme.py │ │ ├── director_smartptr_runme.py │ │ ├── director_stl_runme.py │ │ ├── director_string_runme.py │ │ ├── director_thread_runme.py │ │ ├── director_unroll_runme.py │ │ ├── director_wstring_runme.py │ │ ├── disown_runme.py │ │ ├── doxygen_alias_runme.py │ │ ├── doxygen_autodoc_docstring_runme.py │ │ ├── doxygen_basic_notranslate_runme.py │ │ ├── doxygen_basic_translate_runme.py │ │ ├── doxygen_basic_translate_style2_runme.py │ │ ├── doxygen_basic_translate_style3_runme.py │ │ ├── doxygen_code_blocks_runme.py │ │ ├── doxygen_ignore_runme.py │ │ ├── doxygen_misc_constructs_runme.py │ │ ├── doxygen_parsing_runme.py │ │ ├── doxygen_translate_all_tags_runme.py │ │ ├── doxygen_translate_links_runme.py │ │ ├── doxygen_translate_runme.py │ │ ├── dynamic_cast_runme.py │ │ ├── empty_c_runme.py │ │ ├── empty_runme.py │ │ ├── enum_forward_runme.py │ │ ├── enum_template_runme.py │ │ ├── enums_runme.py │ │ ├── exception_classname_runme.py │ │ ├── exception_order_runme.py │ │ ├── extend_placement_runme.py │ │ ├── extend_template_method_runme.py │ │ ├── extend_template_ns_runme.py │ │ ├── extend_template_runme.py │ │ ├── extend_variable_runme.py │ │ ├── extern_c_runme.py │ │ ├── file_test_runme.py │ │ ├── final_c_runme.py │ │ ├── friends_runme.py │ │ ├── funcptr_cpp_runme.py │ │ ├── functors_runme.py │ │ ├── fvirtual_runme.py │ │ ├── global_functions_runme.py │ │ ├── global_namespace_runme.py │ │ ├── global_ns_arg_runme.py │ │ ├── global_vars_runme.py │ │ ├── grouping_runme.py │ │ ├── hugemod.pl │ │ ├── iadd_runme.py │ │ ├── ignore_parameter_runme.py │ │ ├── implicittest_runme.py │ │ ├── import_nomodule_runme.py │ │ ├── import_stl_runme.py │ │ ├── imports_runme.py │ │ ├── inctest_runme.py │ │ ├── inherit_missing_runme.py │ │ ├── inout_runme.py │ │ ├── inplaceadd_runme.py │ │ ├── input_runme.py │ │ ├── keyword_rename_c_runme.py │ │ ├── keyword_rename_runme.py │ │ ├── kwargs_feature_runme.py │ │ ├── langobj_runme.py │ │ ├── li_attribute_runme.py │ │ ├── li_attribute_template_runme.py │ │ ├── li_boost_shared_ptr_bits_runme.py │ │ ├── li_boost_shared_ptr_director_runme.py │ │ ├── li_boost_shared_ptr_runme.py │ │ ├── li_boost_shared_ptr_template_runme.py │ │ ├── li_carrays_cpp_runme.py │ │ ├── li_carrays_runme.py │ │ ├── li_cdata_cpp_runme.py │ │ ├── li_cdata_runme.py │ │ ├── li_cmalloc_runme.py │ │ ├── li_constraints_runme.py │ │ ├── li_cpointer_cpp_runme.py │ │ ├── li_cpointer_runme.py │ │ ├── li_cstring_runme.py │ │ ├── li_cwstring_runme.py │ │ ├── li_factory_runme.py │ │ ├── li_implicit_runme.py │ │ ├── li_std_auto_ptr_runme.py │ │ ├── li_std_containers_int_runme.py │ │ ├── li_std_containers_overload_runme.py │ │ ├── li_std_except_as_class_runme.py │ │ ├── li_std_map_member_runme.py │ │ ├── li_std_map_runme.py │ │ ├── li_std_pair_extra_runme.py │ │ ├── li_std_pair_runme.py │ │ ├── li_std_pair_using_runme.py │ │ ├── li_std_set_runme.py │ │ ├── li_std_stream_runme.py │ │ ├── li_std_string_extra_runme.py │ │ ├── li_std_vector_back_reference_runme.py │ │ ├── li_std_vector_enum_runme.py │ │ ├── li_std_vector_extra_runme.py │ │ ├── li_std_vector_ptr_runme.py │ │ ├── li_std_vector_runme.py │ │ ├── li_std_wstream_runme.py │ │ ├── li_std_wstring_inherit_runme.py │ │ ├── li_std_wstring_runme.py │ │ ├── member_pointer_const_runme.py │ │ ├── member_pointer_runme.py │ │ ├── memberin_extend_c_runme.py │ │ ├── minherit_runme.py │ │ ├── mod_runme.py │ │ ├── multi_import_runme.py │ │ ├── multivalue_runme.py │ │ ├── name_warnings_runme.py │ │ ├── namespace_class_runme.py │ │ ├── namespace_typemap_runme.py │ │ ├── namespace_virtual_method_runme.py │ │ ├── naturalvar_runme.py │ │ ├── nested_in_template_runme.py │ │ ├── nested_runme.py │ │ ├── nested_template_base_runme.py │ │ ├── nested_workaround_runme.py │ │ ├── not_c_keywords_runme.py │ │ ├── operator_overload_runme.py │ │ ├── operbool_runme.py │ │ ├── overload_bool_runme.py │ │ ├── overload_complicated_runme.py │ │ ├── overload_copy_runme.py │ │ ├── overload_extend2_runme.py │ │ ├── overload_extend_c_runme.py │ │ ├── overload_extend_runme.py │ │ ├── overload_null_runme.py │ │ ├── overload_numeric_runme.py │ │ ├── overload_rename_runme.py │ │ ├── overload_simple_runme.py │ │ ├── overload_subtype_runme.py │ │ ├── overload_template_fast_runme.py │ │ ├── overload_template_runme.py │ │ ├── pointer_reference_runme.py │ │ ├── preproc_cpp_runme.py │ │ ├── preproc_defined_runme.py │ │ ├── preproc_gcc_output_runme.py │ │ ├── preproc_include_runme.py │ │ ├── preproc_runme.py │ │ ├── primitive_ref_runme.py │ │ ├── primitive_types_runme.py │ │ ├── profiletest_runme.py │ │ ├── profiletestc_runme.py │ │ ├── python_abstractbase_runme.py │ │ ├── python_annotations_c_runme.py │ │ ├── python_annotations_variable_c_runme.py │ │ ├── python_append_runme.py │ │ ├── python_builtin_runme.py │ │ ├── python_destructor_exception_runme.py │ │ ├── python_docstring_runme.py │ │ ├── python_extranative_runme.py │ │ ├── python_flatstaticmethod_runme.py │ │ ├── python_moduleimport_runme.py │ │ ├── python_nondynamic_runme.py │ │ ├── python_overload_simple_cast_runme.py │ │ ├── python_pickle_runme.py │ │ ├── python_pybuffer_runme.py │ │ ├── python_pythoncode_runme.py │ │ ├── python_richcompare_runme.py │ │ ├── python_runtime_data_runme.py │ │ ├── python_strict_unicode_runme.py │ │ ├── python_threads_runme.py │ │ ├── python_varargs_typemap_runme.py │ │ ├── pythonswig.supp │ │ ├── refcount_runme.py │ │ ├── reference_global_vars_runme.py │ │ ├── rename_pcre_encoder_runme.py │ │ ├── rename_predicates_runme.py │ │ ├── rename_rstrip_encoder_runme.py │ │ ├── rename_scope_runme.py │ │ ├── rename_strip_encoder_runme.py │ │ ├── ret_by_value_runme.py │ │ ├── return_const_value_runme.py │ │ ├── smart_pointer_const_overload_runme.py │ │ ├── smart_pointer_extend_runme.py │ │ ├── smart_pointer_member_runme.py │ │ ├── smart_pointer_multi_runme.py │ │ ├── smart_pointer_multi_typedef_runme.py │ │ ├── smart_pointer_not_runme.py │ │ ├── smart_pointer_overload_runme.py │ │ ├── smart_pointer_rename_runme.py │ │ ├── smart_pointer_simple_runme.py │ │ ├── smart_pointer_templatevariables_runme.py │ │ ├── smart_pointer_typedef_runme.py │ │ ├── sneaky1_runme.py │ │ ├── special_variable_macros_runme.py │ │ ├── static_const_member_2_runme.py │ │ ├── std_containers_runme.py │ │ ├── struct_initialization_runme.py │ │ ├── struct_rename_runme.py │ │ ├── struct_value_runme.py │ │ ├── swigobject_runme.py │ │ ├── template_class_reuse_name_runme.py │ │ ├── template_classes_runme.py │ │ ├── template_construct_runme.py │ │ ├── template_default_arg_overloaded_extend_runme.py │ │ ├── template_default_arg_overloaded_runme.py │ │ ├── template_default_arg_runme.py │ │ ├── template_default_cache_runme.py │ │ ├── template_extend1_runme.py │ │ ├── template_extend2_runme.py │ │ ├── template_inherit_runme.py │ │ ├── template_matrix_runme.py │ │ ├── template_ns4_runme.py │ │ ├── template_ns_runme.py │ │ ├── template_opaque_runme.py │ │ ├── template_ref_type_runme.py │ │ ├── template_rename_runme.py │ │ ├── template_static_runme.py │ │ ├── template_tbase_template_runme.py │ │ ├── template_template_parameters_runme.py │ │ ├── template_templated_constructors_runme.py │ │ ├── template_type_namespace_runme.py │ │ ├── template_typedef_cplx2_runme.py │ │ ├── template_typedef_cplx3_runme.py │ │ ├── template_typedef_cplx4_runme.py │ │ ├── template_typedef_cplx_runme.py │ │ ├── template_typedef_import_runme.py │ │ ├── template_typedef_runme.py │ │ ├── template_typemaps_typedef2_runme.py │ │ ├── template_typemaps_typedef_runme.py │ │ ├── template_using_directive_typedef_runme.py │ │ ├── template_using_member_default_arg_runme.py │ │ ├── threads_exception_runme.py │ │ ├── typedef_class_runme.py │ │ ├── typedef_classforward_same_name_runme.py │ │ ├── typedef_funcptr_runme.py │ │ ├── typedef_inherit_runme.py │ │ ├── typedef_scope_runme.py │ │ ├── typedef_typedef_runme.py │ │ ├── typemap_arrays_runme.py │ │ ├── typemap_delete_runme.py │ │ ├── typemap_documentation_runme.py │ │ ├── typemap_namespace_runme.py │ │ ├── typemap_ns_using_runme.py │ │ ├── typemap_out_optimal_runme.py │ │ ├── typemap_qualifier_strip_runme.py │ │ ├── typemap_template_typedef_runme.py │ │ ├── typename_runme.py │ │ ├── types_directive_runme.py │ │ ├── unicode_strings_runme.py │ │ ├── unions_runme.py │ │ ├── using1_runme.py │ │ ├── using2_runme.py │ │ ├── using_composition_runme.py │ │ ├── using_extend_runme.py │ │ ├── using_inherit_runme.py │ │ ├── using_member_multiple_inherit_runme.py │ │ ├── using_member_runme.py │ │ ├── using_private_runme.py │ │ ├── using_protected_runme.py │ │ ├── varargs_overload_runme.py │ │ ├── varargs_runme.py │ │ ├── virtual_derivation_runme.py │ │ ├── virtual_poly_runme.py │ │ ├── voidtest_runme.py │ │ └── wrapmacro_runme.py │ ├── python_abstractbase.i │ ├── python_annotations_c.i │ ├── python_annotations_variable_c.i │ ├── python_append.i │ ├── python_builtin.i │ ├── python_destructor_exception.i │ ├── python_director.i │ ├── python_docstring.i │ ├── python_extranative.i │ ├── python_flatstaticmethod.i │ ├── python_moduleimport.i │ ├── python_nondynamic.i │ ├── python_overload_simple_cast.i │ ├── python_pickle.i │ ├── python_pybuffer.i │ ├── python_pythoncode.i │ ├── python_richcompare.i │ ├── python_runtime_data.list │ ├── python_runtime_data_builtin.i │ ├── python_runtime_data_nobuiltin.i │ ├── python_strict_unicode.i │ ├── python_threads.i │ ├── python_varargs_typemap.i │ ├── r │ │ ├── Makefile.in │ │ ├── abstract_access_runme.R │ │ ├── argcargvtest_runme.R │ │ ├── arrays_dimensionless_runme.R │ │ ├── catches_strings_runme.R │ │ ├── constant_pointers_runme.R │ │ ├── enum_thorough_runme.R │ │ ├── exception_memory_leak_runme.R │ │ ├── extend_template_method_runme.R │ │ ├── funcptr_runme.R │ │ ├── ignore_parameter_runme.R │ │ ├── integers_runme.R │ │ ├── li_attribute_template_runme.R │ │ ├── li_boost_shared_ptr_runme.R │ │ ├── li_boost_shared_ptr_template_runme.R │ │ ├── li_std_vector_runme.R │ │ ├── li_std_vector_vector_runme.R │ │ ├── namespace_struct_runme.R │ │ ├── overload_method_runme.R │ │ ├── overload_null_runme.R │ │ ├── pointer_reference_runme.R │ │ ├── preproc_constants_runme.R │ │ ├── r_copy_struct_runme.R │ │ ├── r_double_delete_runme.R │ │ ├── r_legacy_runme.R │ │ ├── r_sexp_runme.R │ │ ├── r_use_isnull_runme.R │ │ ├── rename_simple_runme.R │ │ ├── simple_array_runme.R │ │ ├── smart_pointer_templatevariables_runme.R │ │ ├── template_class_reuse_name_runme.R │ │ ├── template_classes_runme.R │ │ ├── template_default_arg_overloaded_extend_runme.R │ │ ├── template_default_arg_overloaded_runme.R │ │ ├── template_ref_type_runme.R │ │ ├── typedef_inherit_runme.R │ │ ├── unions_runme.R │ │ └── unittest.R │ ├── r_copy_struct.i │ ├── r_double_delete.i │ ├── r_legacy.i │ ├── r_overload_array.i │ ├── r_overload_comma.i │ ├── r_sexp.i │ ├── r_use_isnull.i │ ├── redefined.i │ ├── redefined_not.i │ ├── refcount.h │ ├── refcount.i │ ├── reference_global_vars.i │ ├── register_par.i │ ├── rename.h │ ├── rename1.i │ ├── rename2.i │ ├── rename3.i │ ├── rename4.i │ ├── rename_camel.i │ ├── rename_pcre_encoder.i │ ├── rename_pcre_enum.i │ ├── rename_predicates.i │ ├── rename_rstrip_encoder.i │ ├── rename_scope.i │ ├── rename_simple.i │ ├── rename_strip_encoder.i │ ├── rename_wildcard.i │ ├── restrict_cplusplus.i │ ├── ret_by_value.i │ ├── return_const_value.i │ ├── return_value_scope.i │ ├── rname.i │ ├── ruby │ │ ├── Makefile.in │ │ ├── README │ │ ├── abstract_access_runme.rb │ │ ├── abstract_inherit_ok_runme.rb │ │ ├── abstract_inherit_runme.rb │ │ ├── abstract_signature_runme.rb │ │ ├── abstract_typedef2_runme.rb │ │ ├── abstract_typedef_runme.rb │ │ ├── abstract_virtual_runme.rb │ │ ├── access_change_runme.rb │ │ ├── add_link_runme.rb │ │ ├── aggregate_runme.rb │ │ ├── anonymous_bitfield_runme.rb │ │ ├── apply_signed_char_runme.rb │ │ ├── apply_strings_runme.rb │ │ ├── argcargvtest_runme.rb │ │ ├── argout_runme.rb │ │ ├── array_member_runme.rb │ │ ├── arrays_global_runme.rb │ │ ├── arrays_runme.rb │ │ ├── bools_runme.rb │ │ ├── cast_operator_runme.rb │ │ ├── casts_runme.rb │ │ ├── catches_strings_runme.rb │ │ ├── char_binary_runme.rb │ │ ├── char_constant_runme.rb │ │ ├── check_missing_tests.rb │ │ ├── class_ignore_runme.rb │ │ ├── const_const_runme.rb │ │ ├── constant_directive_runme.rb │ │ ├── constover_runme.rb │ │ ├── contract_runme.rb │ │ ├── cpp11_alias_nested_template_scoping_runme.rb │ │ ├── cpp11_director_using_constructor_runme.rb │ │ ├── cpp11_hash_tables_runme.rb │ │ ├── cpp11_move_typemaps_runme.rb │ │ ├── cpp11_rvalue_reference_move_runme.rb │ │ ├── cpp11_shared_ptr_const_runme.rb │ │ ├── cpp11_shared_ptr_nullptr_in_containers_runme.rb │ │ ├── cpp11_shared_ptr_upcast_runme.rb │ │ ├── cpp11_std_array_runme.rb │ │ ├── cpp11_std_unique_ptr_runme.rb │ │ ├── cpp11_strongly_typed_enumerations_runme.rb │ │ ├── cpp11_using_constructor_runme.rb │ │ ├── cpp17_director_string_view_runme.rb │ │ ├── cpp17_nested_namespaces_runme.rb │ │ ├── cpp17_string_view_runme.rb │ │ ├── cpp_enum_runme.rb │ │ ├── cpp_namespace_runme.rb │ │ ├── cpp_static_runme.rb │ │ ├── default_constructor_runme.rb │ │ ├── director_abstract_runme.rb │ │ ├── director_basic_runme.rb │ │ ├── director_constructor_runme.rb │ │ ├── director_default_runme.rb │ │ ├── director_detect_runme.rb │ │ ├── director_exception_runme.rb │ │ ├── director_frob_runme.rb │ │ ├── director_nested_runme.rb │ │ ├── director_protected_runme.rb │ │ ├── director_smartptr_runme.rb │ │ ├── director_string_runme.rb │ │ ├── director_unroll_runme.rb │ │ ├── director_unwrap_result_runme.rb │ │ ├── director_wombat_runme.rb │ │ ├── disown_runme.rb │ │ ├── dynamic_cast_runme.rb │ │ ├── enum_thorough_runme.rb │ │ ├── enums_runme.rb │ │ ├── extend_template_ns_runme.rb │ │ ├── extend_template_runme.rb │ │ ├── friends_runme.rb │ │ ├── function_typedef_runme.rb │ │ ├── global_immutable_vars_cpp_runme.rb │ │ ├── global_immutable_vars_runme.rb │ │ ├── grouping_runme.rb │ │ ├── ignore_parameter_runme.rb │ │ ├── import_fragments_runme.rb │ │ ├── imports_runme.rb │ │ ├── inherit_missing_runme.rb │ │ ├── integers_runme.rb │ │ ├── li_boost_shared_ptr_bits_runme.rb │ │ ├── li_boost_shared_ptr_director_runme.rb │ │ ├── li_boost_shared_ptr_runme.rb │ │ ├── li_boost_shared_ptr_template_runme.rb │ │ ├── li_carrays_cpp_runme.rb │ │ ├── li_carrays_runme.rb │ │ ├── li_constraints_runme.rb │ │ ├── li_cstring_runme.rb │ │ ├── li_factory_runme.rb │ │ ├── li_math_runme.rb │ │ ├── li_std_auto_ptr_runme.rb │ │ ├── li_std_containers_overload_runme.rb │ │ ├── li_std_deque_runme.rb │ │ ├── li_std_functors_runme.rb │ │ ├── li_std_list_runme.rb │ │ ├── li_std_map_runme.rb │ │ ├── li_std_multimap_runme.rb │ │ ├── li_std_pair_lang_object_runme.rb │ │ ├── li_std_pair_runme.rb │ │ ├── li_std_queue_runme.rb │ │ ├── li_std_set_runme.rb │ │ ├── li_std_speed2_runme.rb │ │ ├── li_std_stack_runme.rb │ │ ├── li_std_stream_runme.rb │ │ ├── li_std_string_runme.rb │ │ ├── li_std_vector_enum_runme.rb │ │ ├── li_std_vector_runme.rb │ │ ├── li_std_wstring_inherit_runme.rb │ │ ├── li_std_wstring_runme.rb │ │ ├── member_pointer_runme.rb │ │ ├── minherit_runme.rb │ │ ├── multiple_inheritance_abstract_runme.rb │ │ ├── multiple_inheritance_nspace_runme.rb │ │ ├── namespace_chase_runme.rb │ │ ├── namespace_class_runme.rb │ │ ├── namespace_forward_declaration_runme.rb │ │ ├── namespace_typemap_runme.rb │ │ ├── namespace_virtual_method_runme.rb │ │ ├── nested_class_runme.rb │ │ ├── nested_directors_runme.rb │ │ ├── nested_in_template_runme.rb │ │ ├── nested_scope_flat_runme.rb │ │ ├── nested_template_base_runme.rb │ │ ├── nested_workaround_runme.rb │ │ ├── newobject1_runme.rb │ │ ├── newobject2_runme.rb │ │ ├── overload_bool_runme.rb │ │ ├── overload_copy_runme.rb │ │ ├── overload_extend2_runme.rb │ │ ├── overload_extend_c_runme.rb │ │ ├── overload_extend_runme.rb │ │ ├── overload_null_runme.rb │ │ ├── overload_simple_runme.rb │ │ ├── overload_subtype_runme.rb │ │ ├── overload_template_runme.rb │ │ ├── preproc_runme.rb │ │ ├── primitive_ref_runme.rb │ │ ├── primitive_types_runme.rb │ │ ├── profiletest_runme.rb │ │ ├── refcount_runme.rb │ │ ├── reference_global_vars_runme.rb │ │ ├── rename_scope_runme.rb │ │ ├── ruby_alias_global_function_runme.rb │ │ ├── ruby_alias_method_runme.rb │ │ ├── ruby_alias_module_function_runme.rb │ │ ├── ruby_global_immutable_vars_cpp_runme.rb │ │ ├── ruby_global_immutable_vars_runme.rb │ │ ├── ruby_keywords_runme.rb │ │ ├── ruby_li_std_speed_runme.rb │ │ ├── ruby_manual_proxy_runme.rb │ │ ├── ruby_minherit_shared_ptr_runme.rb │ │ ├── ruby_naming_bugs_runme.rb │ │ ├── ruby_naming_runme.rb │ │ ├── ruby_rdata_runme.rb │ │ ├── ruby_track_objects_directors_runme.rb │ │ ├── ruby_track_objects_runme.rb │ │ ├── smart_pointer_const_runme.rb │ │ ├── smart_pointer_multi_runme.rb │ │ ├── smart_pointer_multi_typedef_runme.rb │ │ ├── smart_pointer_not_runme.rb │ │ ├── smart_pointer_overload_runme.rb │ │ ├── smart_pointer_rename_runme.rb │ │ ├── smart_pointer_simple_runme.rb │ │ ├── smart_pointer_typedef_runme.rb │ │ ├── sneaky1_runme.rb │ │ ├── static_const_member_2_runme.rb │ │ ├── std_containers_runme.rb │ │ ├── stl_new_runme.rb │ │ ├── struct_value_runme.rb │ │ ├── swig_assert.rb │ │ ├── swig_gc.rb │ │ ├── template_construct_runme.rb │ │ ├── template_extend1_runme.rb │ │ ├── template_extend2_runme.rb │ │ ├── template_inherit_runme.rb │ │ ├── template_nested_flat_runme.rb │ │ ├── template_ns4_runme.rb │ │ ├── template_ns_runme.rb │ │ ├── template_rename_runme.rb │ │ ├── template_static_runme.rb │ │ ├── template_tbase_template_runme.rb │ │ ├── template_type_namespace_runme.rb │ │ ├── template_typedef_cplx2_runme.rb │ │ ├── template_typedef_cplx3_runme.rb │ │ ├── template_typedef_cplx4_runme.rb │ │ ├── template_typedef_cplx_runme.rb │ │ ├── throw_exception_runme.rb │ │ ├── typedef_inherit_runme.rb │ │ ├── typedef_scope_runme.rb │ │ ├── typemap_namespace_runme.rb │ │ ├── typemap_ns_using_runme.rb │ │ ├── typename_runme.rb │ │ ├── unions_runme.rb │ │ ├── using1_runme.rb │ │ ├── using2_runme.rb │ │ ├── using_composition_runme.rb │ │ ├── using_extend_runme.rb │ │ ├── using_inherit_runme.rb │ │ ├── using_private_runme.rb │ │ ├── using_protected_runme.rb │ │ ├── varargs_runme.rb │ │ ├── virtual_derivation_runme.rb │ │ ├── virtual_poly_runme.rb │ │ └── voidtest_runme.rb │ ├── ruby_alias_global_function.i │ ├── ruby_alias_method.i │ ├── ruby_alias_module_function.i │ ├── ruby_global_immutable_vars.i │ ├── ruby_global_immutable_vars_cpp.i │ ├── ruby_keywords.i │ ├── ruby_li_std_speed.i │ ├── ruby_manual_proxy.i │ ├── ruby_minherit_shared_ptr.i │ ├── ruby_naming.i │ ├── ruby_naming_bugs.i │ ├── ruby_rdata.i │ ├── ruby_track_objects.i │ ├── ruby_track_objects_directors.i │ ├── samename.i │ ├── schemerunme │ │ ├── argcargvtest.scm │ │ ├── casts.scm │ │ ├── catches_strings.scm │ │ ├── char_constant.scm │ │ ├── class_ignore.scm │ │ ├── constover.scm │ │ ├── contract.scm │ │ ├── cpp11_move_typemaps.scm │ │ ├── cpp11_rvalue_reference_move.scm │ │ ├── cpp11_std_unique_ptr.scm │ │ ├── cpp_enum.scm │ │ ├── cpp_namespace.scm │ │ ├── dynamic_cast.scm │ │ ├── global_vars.scm │ │ ├── global_vars_proxy.scm │ │ ├── import_nomodule.scm │ │ ├── imports.scm │ │ ├── inherit_missing.scm │ │ ├── integers.scm │ │ ├── li_std_auto_ptr.scm │ │ ├── li_std_string.scm │ │ ├── li_typemaps.scm │ │ ├── li_typemaps_proxy.scm │ │ ├── list_vector.scm │ │ ├── multiple_inheritance_proxy.scm │ │ ├── multivalue.scm │ │ ├── name.scm │ │ ├── newobject1.scm │ │ ├── null_pointer.scm │ │ ├── overload_complicated.scm │ │ ├── overload_copy.scm │ │ ├── overload_extend.scm │ │ ├── overload_extend_c.scm │ │ ├── overload_simple.scm │ │ ├── overload_subtype.scm │ │ ├── pointer_in_out.scm │ │ ├── reference_global_vars.scm │ │ ├── typedef_inherit.scm │ │ ├── typename.scm │ │ ├── unions.scm │ │ └── unions_proxy.scm │ ├── scilab │ │ ├── Makefile.in │ │ ├── abstract_access_runme.sci │ │ ├── abstract_inherit_ok_runme.sci │ │ ├── abstract_inherit_runme.sci │ │ ├── abstract_signature_runme.sci │ │ ├── abstract_typedef2_runme.sci │ │ ├── abstract_typedef_runme.sci │ │ ├── abstract_virtual_runme.sci │ │ ├── access_change_runme.sci │ │ ├── add_link_runme.sci │ │ ├── aggregate_runme.sci │ │ ├── allowexcept_runme.sci │ │ ├── allprotected_runme.sci │ │ ├── anonymous_bitfield_runme.sci │ │ ├── apply_signed_char_runme.sci │ │ ├── apply_strings_runme.sci │ │ ├── argcargvtest_runme.sci │ │ ├── array_member_runme.sci │ │ ├── arrays_dimensionless_runme.sci │ │ ├── arrays_global_runme.sci │ │ ├── arrays_global_twodim_runme.sci │ │ ├── bools_runme.sci │ │ ├── catches_strings_runme.sci │ │ ├── char_constant_runme.sci │ │ ├── constover_runme.sci │ │ ├── constructor_copy_runme.sci │ │ ├── cpp_basic_runme.sci │ │ ├── cpp_enum_runme.sci │ │ ├── default_args_runme.sci │ │ ├── default_constructor_runme.sci │ │ ├── empty_c_runme.sci │ │ ├── empty_runme.sci │ │ ├── enums_runme.sci │ │ ├── funcptr_cpp_runme.sci │ │ ├── funcptr_runme.sci │ │ ├── global_vars_runme.sci │ │ ├── inctest_runme.sci │ │ ├── inherit_missing_runme.sci │ │ ├── inout_runme.sci │ │ ├── integers_runme.sci │ │ ├── li_carrays_cpp_runme.sci │ │ ├── li_carrays_runme.sci │ │ ├── li_cpointer_cpp_runme.sci │ │ ├── li_cpointer_runme.sci │ │ ├── li_math_runme.sci │ │ ├── li_std_container_typemaps_runme.sci │ │ ├── li_std_deque_runme.sci │ │ ├── li_std_except_runme.sci │ │ ├── li_std_pair_runme.sci │ │ ├── li_std_string_extra_runme.sci │ │ ├── li_std_vector_runme.sci │ │ ├── li_typemaps_runme.sci │ │ ├── member_pointer_runme.sci │ │ ├── name_runme.sci │ │ ├── nested_structs_runme.sci │ │ ├── newobject2_runme.sci │ │ ├── null_pointer_runme.sci │ │ ├── operator_overload_runme.sci │ │ ├── overload_arrays_runme.sci │ │ ├── overload_complicated_runme.sci │ │ ├── overload_copy_runme.sci │ │ ├── overload_extend2_runme.sci │ │ ├── overload_extend_c_runme.sci │ │ ├── overload_extend_runme.sci │ │ ├── overload_null_runme.sci │ │ ├── overload_numeric_runme.sci │ │ ├── overload_polymorphic_runme.sci │ │ ├── overload_simple_runme.sci │ │ ├── overload_subtype_runme.sci │ │ ├── preproc_constants_runme.sci │ │ ├── preproc_runme.sci │ │ ├── primitive_ref_runme.sci │ │ ├── primitive_types_runme.sci │ │ ├── ret_by_value_runme.sci │ │ ├── return_const_value_runme.sci │ │ ├── scilab_consts_runme.sci │ │ ├── scilab_enums_runme.sci │ │ ├── scilab_identifier_name_runme.sci │ │ ├── scilab_li_matrix_runme.sci │ │ ├── scilab_multivalue_runme.sci │ │ ├── scilab_pointer_conversion_functions_runme.sci │ │ ├── simple_array_runme.sci │ │ ├── sizet_runme.sci │ │ ├── smart_pointer_simple_runme.sci │ │ ├── sneaky1_runme.sci │ │ ├── struct_initialization_runme.sci │ │ ├── struct_rename_runme.sci │ │ ├── struct_value_runme.sci │ │ ├── swigtest.quit │ │ ├── swigtest.start │ │ ├── template_classes_runme.sci │ │ ├── template_ns_runme.sci │ │ ├── template_rename_runme.sci │ │ ├── template_static_runme.sci │ │ ├── throw_exception_runme.sci │ │ ├── typedef_struct_cpp_runme.sci │ │ ├── typedef_struct_runme.sci │ │ ├── union_parameter_runme.sci │ │ ├── unions_runme.sci │ │ ├── varargs_overload_runme.sci │ │ ├── varargs_runme.sci │ │ └── voidtest_runme.sci │ ├── scilab_consts.i │ ├── scilab_enums.i │ ├── scilab_identifier_name.i │ ├── scilab_li_matrix.i │ ├── scilab_multivalue.i │ ├── scilab_pointer_conversion_functions.i │ ├── shared_ptr_wrapper.h │ ├── simple_array.i │ ├── simutry.i │ ├── sizeof_pointer.i │ ├── sizet.i │ ├── smart_pointer_const.i │ ├── smart_pointer_const2.i │ ├── smart_pointer_const_overload.i │ ├── smart_pointer_extend.i │ ├── smart_pointer_ignore.i │ ├── smart_pointer_inherit.i │ ├── smart_pointer_member.i │ ├── smart_pointer_multi.i │ ├── smart_pointer_multi_typedef.i │ ├── smart_pointer_namespace.i │ ├── smart_pointer_namespace2.i │ ├── smart_pointer_not.i │ ├── smart_pointer_overload.i │ ├── smart_pointer_protected.i │ ├── smart_pointer_rename.i │ ├── smart_pointer_simple.i │ ├── smart_pointer_static.i │ ├── smart_pointer_template_const_overload.i │ ├── smart_pointer_template_defaults_overload.i │ ├── smart_pointer_templatemethods.i │ ├── smart_pointer_templatevariables.i │ ├── smart_pointer_typedef.i │ ├── sneaky1.i │ ├── special_variable_attributes.i │ ├── special_variable_macros.i │ ├── special_variables.i │ ├── static_array_member.i │ ├── static_const_member.i │ ├── static_const_member_2.i │ ├── std_containers.i │ ├── stl_new.i │ ├── stl_no_default_constructor.i │ ├── string_constants.i │ ├── string_simple.i │ ├── struct_initialization.i │ ├── struct_initialization_cpp.i │ ├── struct_rename.i │ ├── struct_value.i │ ├── swig_examples_lock.h │ ├── swig_exception.i │ ├── swigobject.i │ ├── sym.i │ ├── symbol_clash.i │ ├── tag_no_clash_with_variable.i │ ├── tcl │ │ ├── Makefile.in │ │ ├── README │ │ ├── argcargvtest_runme.tcl │ │ ├── bools_runme.tcl │ │ ├── catches_strings_runme.tcl │ │ ├── clientdata_prop_runme.tcl │ │ ├── cpp11_move_typemaps_runme.tcl │ │ ├── cpp11_rvalue_reference_move_runme.tcl │ │ ├── cpp11_std_unique_ptr_runme.tcl │ │ ├── cpp11_strongly_typed_enumerations_runme.tcl │ │ ├── cpp17_string_view_runme.tcl │ │ ├── disown_runme.tcl │ │ ├── enum_thorough_runme.tcl │ │ ├── import_nomodule_runme.tcl │ │ ├── imports_runme.tcl │ │ ├── integers_runme.tcl │ │ ├── li_constraints_runme.tcl │ │ ├── li_std_auto_ptr_runme.tcl │ │ ├── li_std_string_runme.tcl │ │ ├── li_std_vector_runme.tcl │ │ ├── member_pointer_runme.tcl │ │ ├── newobject1_runme.tcl │ │ ├── newobject2_runme.tcl │ │ ├── null_pointer_runme.tcl │ │ ├── overload_copy_runme.tcl │ │ ├── overload_null_runme.tcl │ │ ├── overload_simple_runme.tcl │ │ ├── primitive_ref_runme.tcl │ │ ├── primitive_types_runme.tcl │ │ ├── profiletest_runme.tcl │ │ ├── reference_global_vars_runme.tcl │ │ ├── union_parameter_runme.tcl │ │ └── unions_runme.tcl │ ├── template_arg_replace.i │ ├── template_arg_scope.i │ ├── template_arg_typename.i │ ├── template_array_numeric.i │ ├── template_base_template.i │ ├── template_basic.i │ ├── template_class_reuse_name.i │ ├── template_classes.i │ ├── template_const_ref.i │ ├── template_construct.i │ ├── template_default.i │ ├── template_default2.i │ ├── template_default_arg.i │ ├── template_default_arg_overloaded.i │ ├── template_default_arg_overloaded_extend.i │ ├── template_default_arg_virtual_destructor.i │ ├── template_default_cache.i │ ├── template_default_class_parms.i │ ├── template_default_class_parms_typedef.i │ ├── template_default_inherit.i │ ├── template_default_pointer.i │ ├── template_default_qualify.i │ ├── template_default_vw.i │ ├── template_empty_inherit.i │ ├── template_enum.i │ ├── template_enum_ns_inherit.i │ ├── template_enum_typedef.i │ ├── template_explicit.i │ ├── template_expr.i │ ├── template_extend1.i │ ├── template_extend2.i │ ├── template_extend_overload.i │ ├── template_extend_overload_2.i │ ├── template_forward.i │ ├── template_function_parm.i │ ├── template_inherit.i │ ├── template_inherit_abstract.i │ ├── template_int_const.i │ ├── template_keyword_in_type.i │ ├── template_matrix.i │ ├── template_methods.i │ ├── template_namespace_forward_declaration.i │ ├── template_nested.i │ ├── template_nested_flat.i │ ├── template_nested_typemaps.i │ ├── template_ns.i │ ├── template_ns2.i │ ├── template_ns3.i │ ├── template_ns4.i │ ├── template_ns_enum.i │ ├── template_ns_enum2.i │ ├── template_ns_inherit.i │ ├── template_ns_scope.i │ ├── template_opaque.i │ ├── template_parameters_global_scope.i │ ├── template_partial_arg.i │ ├── template_partial_specialization.i │ ├── template_partial_specialization_more.i │ ├── template_partial_specialization_typedef.i │ ├── template_private_assignment.i │ ├── template_qualifier.i │ ├── template_ref_type.i │ ├── template_rename.i │ ├── template_retvalue.i │ ├── template_specialization.i │ ├── template_specialization_defarg.i │ ├── template_specialization_enum.i │ ├── template_specialization_using_declaration.i │ ├── template_static.i │ ├── template_tbase_template.i │ ├── template_template_parameters.i │ ├── template_template_template_parameters.i │ ├── template_templated_constructors.i │ ├── template_type_collapse.i │ ├── template_type_namespace.i │ ├── template_typedef.i │ ├── template_typedef_class_template.i │ ├── template_typedef_cplx.i │ ├── template_typedef_cplx2.h │ ├── template_typedef_cplx2.i │ ├── template_typedef_cplx3.i │ ├── template_typedef_cplx4.i │ ├── template_typedef_cplx5.i │ ├── template_typedef_fnc.i │ ├── template_typedef_funcptr.i │ ├── template_typedef_import.i │ ├── template_typedef_import.list │ ├── template_typedef_inherit.i │ ├── template_typedef_ns.i │ ├── template_typedef_ptr.i │ ├── template_typedef_rec.i │ ├── template_typedef_typedef.i │ ├── template_typemaps.i │ ├── template_typemaps_typedef.i │ ├── template_typemaps_typedef2.i │ ├── template_using.i │ ├── template_using_directive_and_declaration_forward.i │ ├── template_using_directive_typedef.i │ ├── template_using_member_default_arg.i │ ├── template_virtual.i │ ├── template_whitespace.i │ ├── testdir │ │ ├── README │ │ ├── go_subdir_import │ │ │ └── go_subdir_import_c.i │ │ └── inctest │ │ │ ├── subdir1 │ │ │ ├── hello.i │ │ │ ├── imports.i │ │ │ └── subinc1.i │ │ │ ├── subdir2 │ │ │ ├── hello.i │ │ │ ├── imports.i │ │ │ └── subinc2.i │ │ │ └── test.i │ ├── threads.i │ ├── threads_exception.i │ ├── throw_exception.i │ ├── typedef_array_member.i │ ├── typedef_class.i │ ├── typedef_classforward_same_name.i │ ├── typedef_funcptr.i │ ├── typedef_inherit.i │ ├── typedef_mptr.i │ ├── typedef_reference.i │ ├── typedef_scope.i │ ├── typedef_sizet.i │ ├── typedef_struct.i │ ├── typedef_struct_cpp.i │ ├── typedef_typedef.i │ ├── typemap_array_qualifiers.i │ ├── typemap_arrays.i │ ├── typemap_delete.i │ ├── typemap_directorout.i │ ├── typemap_documentation.i │ ├── typemap_global_scope.i │ ├── typemap_manyargs.i │ ├── typemap_namespace.i │ ├── typemap_ns_using.i │ ├── typemap_numinputs.i │ ├── typemap_out_optimal.i │ ├── typemap_qualifier_strip.i │ ├── typemap_self.i │ ├── typemap_subst.i │ ├── typemap_template.i │ ├── typemap_template_parm_typedef.i │ ├── typemap_template_parms.i │ ├── typemap_template_typedef.i │ ├── typemap_variables.i │ ├── typemap_various.i │ ├── typename.i │ ├── types_directive.i │ ├── unicode_strings.i │ ├── union_parameter.i │ ├── union_scope.i │ ├── unions.i │ ├── using1.i │ ├── using2.i │ ├── using_composition.i │ ├── using_directive_and_declaration.i │ ├── using_directive_and_declaration_forward.i │ ├── using_extend.i │ ├── using_inherit.i │ ├── using_member.i │ ├── using_member_multiple_inherit.i │ ├── using_member_scopes.i │ ├── using_namespace.i │ ├── using_namespace_loop.i │ ├── using_pointers.i │ ├── using_private.i │ ├── using_protected.i │ ├── valuewrapper.i │ ├── valuewrapper_base.i │ ├── valuewrapper_const.i │ ├── valuewrapper_opaque.i │ ├── varargs.i │ ├── varargs_overload.i │ ├── variable_replacement.i │ ├── virtual_derivation.i │ ├── virtual_destructor.i │ ├── virtual_poly.i │ ├── virtual_vs_nonvirtual_base.i │ ├── voidtest.i │ ├── wallkw.i │ └── wrapmacro.i └── xml │ ├── Makefile.in │ ├── error.expected-xml │ ├── error.i │ ├── example.expected-xml │ ├── example.h │ ├── example.i │ ├── example_apply.expected-xml │ ├── example_apply.i │ ├── example_const.expected-xml │ ├── example_const.i │ ├── example_gif.expected-xml │ ├── example_inl.expected-xml │ ├── example_inl.h │ ├── example_inl.i │ ├── example_p5.expected-xml │ ├── example_p5.i │ ├── example_ro.expected-xml │ ├── example_ro.i │ ├── example_title_add.expected-xml │ ├── example_title_add.i │ ├── example_xml.expected-xml │ ├── example_xml.h │ ├── example_xml.i │ ├── gnarly.expected-xml │ └── gnarly.i ├── INSTALL ├── LICENSE ├── LICENSE-GPL ├── LICENSE-UNIVERSITIES ├── Lib ├── allkw.swg ├── attribute.i ├── carrays.i ├── cdata.i ├── cmalloc.i ├── constraints.i ├── cpointer.i ├── csharp │ ├── argcargv.i │ ├── arrays_csharp.i │ ├── boost_intrusive_ptr.i │ ├── boost_shared_ptr.i │ ├── complex.i │ ├── csharp.swg │ ├── csharphead.swg │ ├── csharpkw.swg │ ├── director.swg │ ├── enums.swg │ ├── enumsimple.swg │ ├── enumtypesafe.swg │ ├── std_array.i │ ├── std_auto_ptr.i │ ├── std_common.i │ ├── std_complex.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_list.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_set.i │ ├── std_shared_ptr.i │ ├── std_string.i │ ├── std_string_view.i │ ├── std_unique_ptr.i │ ├── std_vector.i │ ├── std_wstring.i │ ├── stl.i │ ├── swiginterface.i │ ├── swigmove.i │ ├── swigtype_inout.i │ ├── typemaps.i │ └── wchar.i ├── cstring.i ├── cwstring.i ├── d │ ├── argcargv.i │ ├── boost_shared_ptr.i │ ├── carrays.i │ ├── cpointer.i │ ├── d.swg │ ├── dclassgen.swg │ ├── ddirectives.swg │ ├── denums.swg │ ├── dexception.swg │ ├── dhead.swg │ ├── director.swg │ ├── dkw.swg │ ├── dmemberfunctionpointers.swg │ ├── doperators.swg │ ├── dprimitives.swg │ ├── dstrings.swg │ ├── dswigtype.swg │ ├── dvoid.swg │ ├── std_auto_ptr.i │ ├── std_common.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_shared_ptr.i │ ├── std_string.i │ ├── std_unique_ptr.i │ ├── std_vector.i │ ├── stl.i │ ├── swigmove.i │ ├── typemaps.i │ └── wrapperloader.swg ├── director_common.swg ├── exception.i ├── fortran │ ├── bindc.swg │ ├── boost_shared_ptr.i │ ├── ccomplex.i │ ├── classes.swg │ ├── complex.i │ ├── director.swg │ ├── enums.swg │ ├── exception.i │ ├── extern_exception.i │ ├── fortran.swg │ ├── fortranarray.swg │ ├── fortranfragments.swg │ ├── fortrankw.swg │ ├── fortranruntime.swg │ ├── fortranstrings.swg │ ├── fundamental.swg │ ├── funptrs.swg │ ├── memfunptr.swg │ ├── std_array.i │ ├── std_auto_ptr.i │ ├── std_common.i │ ├── std_complex.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_map.i │ ├── std_multiset.i │ ├── std_pair.i │ ├── std_set.i │ ├── std_shared_ptr.i │ ├── std_span.i │ ├── std_string.i │ ├── std_unique_ptr.i │ ├── std_vector.i │ ├── stdint.i │ ├── stl.i │ ├── swigmove.i │ └── typemaps.i ├── go │ ├── argcargv.i │ ├── cdata.i │ ├── director.swg │ ├── exception.i │ ├── go.swg │ ├── gokw.swg │ ├── goruntime.swg │ ├── gostring.swg │ ├── std_array.i │ ├── std_common.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_list.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── swigmove.i │ └── typemaps.i ├── guile │ ├── Makefile │ ├── argcargv.i │ ├── common.scm │ ├── cplusplus.i │ ├── extra-install.list │ ├── guile.i │ ├── guile_scm.swg │ ├── guile_scm_run.swg │ ├── guilemain.i │ ├── interpreter.i │ ├── list-vector.i │ ├── pointer-in-out.i │ ├── ports.i │ ├── std_auto_ptr.i │ ├── std_common.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_unique_ptr.i │ ├── std_vector.i │ ├── stl.i │ ├── swigmove.i │ ├── swigrun.i │ └── typemaps.i ├── intrusive_ptr.i ├── inttypes.i ├── java │ ├── argcargv.i │ ├── arrays_java.i │ ├── boost_intrusive_ptr.i │ ├── boost_shared_ptr.i │ ├── director.swg │ ├── enums.swg │ ├── enumsimple.swg │ ├── enumtypesafe.swg │ ├── enumtypeunsafe.swg │ ├── java.swg │ ├── javahead.swg │ ├── javakw.swg │ ├── std_array.i │ ├── std_auto_ptr.i │ ├── std_common.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_list.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_set.i │ ├── std_shared_ptr.i │ ├── std_string.i │ ├── std_string_view.i │ ├── std_unique_ptr.i │ ├── std_unordered_map.i │ ├── std_unordered_set.i │ ├── std_vector.i │ ├── std_wstring.i │ ├── stl.i │ ├── swiginterface.i │ ├── swigmove.i │ ├── typemaps.i │ └── various.i ├── javascript │ ├── jsc │ │ ├── argcargv.i │ │ ├── arrays_javascript.i │ │ ├── ccomplex.i │ │ ├── cdata.i │ │ ├── cmalloc.i │ │ ├── complex.i │ │ ├── exception.i │ │ ├── factory.i │ │ ├── javascript.swg │ │ ├── javascriptcode.swg │ │ ├── javascriptcomplex.swg │ │ ├── javascriptfragments.swg │ │ ├── javascripthelpers.swg │ │ ├── javascriptinit.swg │ │ ├── javascriptprimtypes.swg │ │ ├── javascriptrun.swg │ │ ├── javascriptruntime.swg │ │ ├── javascriptstrings.swg │ │ ├── javascripttypemaps.swg │ │ ├── std_auto_ptr.i │ │ ├── std_common.i │ │ ├── std_complex.i │ │ ├── std_deque.i │ │ ├── std_except.i │ │ ├── std_map.i │ │ ├── std_pair.i │ │ ├── std_string.i │ │ ├── std_unique_ptr.i │ │ ├── std_vector.i │ │ ├── stl.i │ │ ├── swigmove.i │ │ └── typemaps.i │ ├── napi │ │ ├── argcargv.i │ │ ├── arrays_javascript.i │ │ ├── ccomplex.i │ │ ├── cdata.i │ │ ├── cmalloc.i │ │ ├── complex.i │ │ ├── exception.i │ │ ├── factory.i │ │ ├── javascript.swg │ │ ├── javascriptcode.swg │ │ ├── javascriptcomplex.swg │ │ ├── javascriptfragments.swg │ │ ├── javascriptinit.swg │ │ ├── javascriptprimtypes.swg │ │ ├── javascriptrun.swg │ │ ├── javascriptruntime.swg │ │ ├── javascriptstrings.swg │ │ ├── javascripttypemaps.swg │ │ ├── nodejs_buffer.i │ │ ├── std_auto_ptr.i │ │ ├── std_common.i │ │ ├── std_complex.i │ │ ├── std_deque.i │ │ ├── std_except.i │ │ ├── std_map.i │ │ ├── std_pair.i │ │ ├── std_string.i │ │ ├── std_unique_ptr.i │ │ ├── std_vector.i │ │ ├── stl.i │ │ ├── swigmove.i │ │ └── typemaps.i │ └── v8 │ │ ├── argcargv.i │ │ ├── arrays_javascript.i │ │ ├── ccomplex.i │ │ ├── cdata.i │ │ ├── cmalloc.i │ │ ├── complex.i │ │ ├── exception.i │ │ ├── factory.i │ │ ├── javascript.swg │ │ ├── javascriptcode.swg │ │ ├── javascriptcomplex.swg │ │ ├── javascriptfragments.swg │ │ ├── javascripthelpers.swg │ │ ├── javascriptinit.swg │ │ ├── javascriptprimtypes.swg │ │ ├── javascriptrun.swg │ │ ├── javascriptruntime.swg │ │ ├── javascriptstrings.swg │ │ ├── javascripttypemaps.swg │ │ ├── std_auto_ptr.i │ │ ├── std_common.i │ │ ├── std_complex.i │ │ ├── std_deque.i │ │ ├── std_except.i │ │ ├── std_map.i │ │ ├── std_pair.i │ │ ├── std_string.i │ │ ├── std_unique_ptr.i │ │ ├── std_vector.i │ │ ├── stl.i │ │ ├── swigmove.i │ │ └── typemaps.i ├── javascriptkw.swg ├── linkruntime.c ├── lua │ ├── _std_common.i │ ├── argcargv.i │ ├── carrays.i │ ├── factory.i │ ├── lua.swg │ ├── lua_fnptr.i │ ├── luakw.swg │ ├── luarun.swg │ ├── luaruntime.swg │ ├── luatypemaps.swg │ ├── std_auto_ptr.i │ ├── std_common.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_string_view.i │ ├── std_unique_ptr.i │ ├── std_vector.i │ ├── stl.i │ ├── swigmove.i │ ├── typemaps.i │ └── wchar.i ├── math.i ├── mzscheme │ ├── Makefile │ ├── argcargv.i │ ├── mzrun.swg │ ├── mzscheme.swg │ ├── std_auto_ptr.i │ ├── std_common.i │ ├── std_deque.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_unique_ptr.i │ ├── std_vector.i │ ├── stl.i │ ├── swigmove.i │ └── typemaps.i ├── ocaml │ ├── carray.i │ ├── class.swg │ ├── cstring.i │ ├── director.swg │ ├── extra-install.list │ ├── ocaml.i │ ├── ocaml.swg │ ├── ocamlkw.swg │ ├── ocamlrun.swg │ ├── ocamlrundec.swg │ ├── preamble.swg │ ├── std_common.i │ ├── std_complex.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_list.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── swig.ml │ ├── swig.mli │ ├── swigmove.i │ ├── swigp4.ml │ ├── typecheck.i │ ├── typemaps.i │ └── typeregister.swg ├── octave │ ├── argcargv.i │ ├── attribute.i │ ├── boost_shared_ptr.i │ ├── carrays.i │ ├── cdata.i │ ├── cmalloc.i │ ├── director.swg │ ├── exception.i │ ├── extra-install.list │ ├── factory.i │ ├── implicit.i │ ├── octave.swg │ ├── octcomplex.swg │ ├── octcontainer.swg │ ├── octfragments.swg │ ├── octheaders.hpp │ ├── octiterators.swg │ ├── octopers.swg │ ├── octprimtypes.swg │ ├── octrun.swg │ ├── octruntime.swg │ ├── octstdcommon.swg │ ├── octtypemaps.swg │ ├── octuserdir.swg │ ├── std_alloc.i │ ├── std_auto_ptr.i │ ├── std_basic_string.i │ ├── std_char_traits.i │ ├── std_common.i │ ├── std_complex.i │ ├── std_container.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_list.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_shared_ptr.i │ ├── std_string.i │ ├── std_unique_ptr.i │ ├── std_vector.i │ ├── std_wstring.i │ ├── stl.i │ ├── swigmove.i │ └── typemaps.i ├── perl5 │ ├── Makefile.in │ ├── Makefile.pl │ ├── argcargv.i │ ├── attribute.i │ ├── carrays.i │ ├── cdata.i │ ├── cmalloc.i │ ├── cpointer.i │ ├── cstring.i │ ├── director.swg │ ├── exception.i │ ├── extra-install.list │ ├── factory.i │ ├── noembed.h │ ├── perl5.swg │ ├── perlerrors.swg │ ├── perlfragments.swg │ ├── perlhead.swg │ ├── perlinit.swg │ ├── perlkw.swg │ ├── perlmacros.swg │ ├── perlmain.i │ ├── perlopers.swg │ ├── perlprimtypes.swg │ ├── perlrun.swg │ ├── perlruntime.swg │ ├── perlstrings.swg │ ├── perltypemaps.swg │ ├── perluserdir.swg │ ├── reference.i │ ├── std_auto_ptr.i │ ├── std_common.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_list.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_string_view.i │ ├── std_unique_ptr.i │ ├── std_vector.i │ ├── stl.i │ ├── swigmove.i │ └── typemaps.i ├── php │ ├── argcargv.i │ ├── const.i │ ├── director.swg │ ├── factory.i │ ├── php.swg │ ├── phpinit.swg │ ├── phpinterfaces.i │ ├── phpkw.swg │ ├── phppointers.i │ ├── phprun.swg │ ├── std_auto_ptr.i │ ├── std_common.i │ ├── std_deque.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_string_view.i │ ├── std_unique_ptr.i │ ├── std_vector.i │ ├── stl.i │ ├── swigmove.i │ ├── typemaps.i │ └── utils.i ├── python │ ├── Makefile.in │ ├── README │ ├── argcargv.i │ ├── attribute.i │ ├── boost_shared_ptr.i │ ├── builtin.swg │ ├── carrays.i │ ├── ccomplex.i │ ├── cdata.i │ ├── cmalloc.i │ ├── complex.i │ ├── cpointer.i │ ├── cstring.i │ ├── cwstring.i │ ├── director.swg │ ├── embed.i │ ├── exception.i │ ├── factory.i │ ├── file.i │ ├── implicit.i │ ├── pyabc.i │ ├── pyapi.swg │ ├── pybackward.swg │ ├── pybuffer.i │ ├── pyclasses.swg │ ├── pycomplex.swg │ ├── pycontainer.swg │ ├── pydocs.swg │ ├── pyerrors.swg │ ├── pyfragments.swg │ ├── pyhead.swg │ ├── pyinit.swg │ ├── pyiterators.swg │ ├── pymacros.swg │ ├── pyname_compat.i │ ├── pyopers.swg │ ├── pyprimtypes.swg │ ├── pyrun.swg │ ├── pyruntime.swg │ ├── pystdcommon.swg │ ├── pystrings.swg │ ├── python.swg │ ├── pythonkw.swg │ ├── pythreads.swg │ ├── pytuplehlp.swg │ ├── pytypemaps.swg │ ├── pyuserdir.swg │ ├── pywstrings.swg │ ├── std_alloc.i │ ├── std_array.i │ ├── std_auto_ptr.i │ ├── std_basic_string.i │ ├── std_char_traits.i │ ├── std_common.i │ ├── std_complex.i │ ├── std_container.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_ios.i │ ├── std_iostream.i │ ├── std_list.i │ ├── std_map.i │ ├── std_multimap.i │ ├── std_multiset.i │ ├── std_pair.i │ ├── std_set.i │ ├── std_shared_ptr.i │ ├── std_sstream.i │ ├── std_streambuf.i │ ├── std_string.i │ ├── std_string_view.i │ ├── std_unique_ptr.i │ ├── std_unordered_map.i │ ├── std_unordered_multimap.i │ ├── std_unordered_multiset.i │ ├── std_unordered_set.i │ ├── std_vector.i │ ├── std_vectora.i │ ├── std_wios.i │ ├── std_wiostream.i │ ├── std_wsstream.i │ ├── std_wstreambuf.i │ ├── std_wstring.i │ ├── stl.i │ ├── swigmove.i │ ├── typemaps.i │ └── wchar.i ├── r │ ├── argcargv.i │ ├── boost_shared_ptr.i │ ├── cdata.i │ ├── exception.i │ ├── r.swg │ ├── rcontainer.swg │ ├── rfragments.swg │ ├── rkw.swg │ ├── ropers.swg │ ├── rrun.swg │ ├── rstdcommon.swg │ ├── rtype.swg │ ├── srun.swg │ ├── std_alloc.i │ ├── std_common.i │ ├── std_container.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_list.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_shared_ptr.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── swigmove.i │ └── typemaps.i ├── ruby │ ├── Makefile.swig │ ├── argcargv.i │ ├── attribute.i │ ├── boost_shared_ptr.i │ ├── carrays.i │ ├── cdata.i │ ├── cmalloc.i │ ├── cpointer.i │ ├── cstring.i │ ├── director.swg │ ├── embed.i │ ├── exception.i │ ├── extconf.rb │ ├── extra-install.list │ ├── factory.i │ ├── file.i │ ├── progargcargv.i │ ├── ruby.swg │ ├── rubyapi.swg │ ├── rubyautodoc.swg │ ├── rubyclasses.swg │ ├── rubycomplex.swg │ ├── rubycontainer.swg │ ├── rubycontainer_extended.swg │ ├── rubydef.swg │ ├── rubyerrors.swg │ ├── rubyfragments.swg │ ├── rubyhead.swg │ ├── rubyinit.swg │ ├── rubyiterators.swg │ ├── rubykw.swg │ ├── rubymacros.swg │ ├── rubyopers.swg │ ├── rubyprimtypes.swg │ ├── rubyrun.swg │ ├── rubyruntime.swg │ ├── rubystdautodoc.swg │ ├── rubystdcommon.swg │ ├── rubystdcommon_forward.swg │ ├── rubystdfunctors.swg │ ├── rubystrings.swg │ ├── rubytracking.swg │ ├── rubytypemaps.swg │ ├── rubyuserdir.swg │ ├── rubywstrings.swg │ ├── std_alloc.i │ ├── std_array.i │ ├── std_auto_ptr.i │ ├── std_basic_string.i │ ├── std_char_traits.i │ ├── std_common.i │ ├── std_complex.i │ ├── std_container.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_functors.i │ ├── std_ios.i │ ├── std_iostream.i │ ├── std_list.i │ ├── std_map.i │ ├── std_multimap.i │ ├── std_multiset.i │ ├── std_pair.i │ ├── std_queue.i │ ├── std_set.i │ ├── std_shared_ptr.i │ ├── std_sstream.i │ ├── std_stack.i │ ├── std_streambuf.i │ ├── std_string.i │ ├── std_string_view.i │ ├── std_unique_ptr.i │ ├── std_unordered_map.i │ ├── std_unordered_multimap.i │ ├── std_unordered_multiset.i │ ├── std_unordered_set.i │ ├── std_vector.i │ ├── std_vectora.i │ ├── std_wstring.i │ ├── stl.i │ ├── swigmove.i │ ├── timeval.i │ └── typemaps.i ├── runtime.swg ├── scilab │ ├── argcargv.i │ ├── boost_shared_ptr.i │ ├── carrays.i │ ├── cmalloc.i │ ├── cpointer.i │ ├── exception.i │ ├── matrix.i │ ├── sciarray.swg │ ├── scibool.swg │ ├── scichar.swg │ ├── scicontainer.swg │ ├── scidouble.swg │ ├── scienum.swg │ ├── sciexception.swg │ ├── scifloat.swg │ ├── sciint.swg │ ├── sciiterators.swg │ ├── scilab.swg │ ├── scilist.swg │ ├── scilong.swg │ ├── scilonglong.swg │ ├── scimacros.swg │ ├── scimatrixbool.swg │ ├── scimatrixchar.swg │ ├── scimatrixdouble.swg │ ├── scimatrixint.swg │ ├── scimisctypes.swg │ ├── scipointer.swg │ ├── sciprimtypes.swg │ ├── scirun.swg │ ├── sciruntime.swg │ ├── scisequence.swg │ ├── scisequencebool.swg │ ├── scisequencedouble.swg │ ├── scisequencefloat.swg │ ├── scisequenceint.swg │ ├── scisequencepointer.swg │ ├── scisequencestring.swg │ ├── scishort.swg │ ├── scisignedchar.swg │ ├── scistdcommon.swg │ ├── scitypemaps.swg │ ├── sciunsignedchar.swg │ ├── sciunsignedint.swg │ ├── sciunsignedlong.swg │ ├── sciunsignedshort.swg │ ├── std_alloc.i │ ├── std_basic_string.i │ ├── std_char_traits.i │ ├── std_common.i │ ├── std_container.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_list.i │ ├── std_map.i │ ├── std_multiset.i │ ├── std_pair.i │ ├── std_set.i │ ├── std_shared_ptr.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── swigmove.i │ └── typemaps.i ├── shared_ptr.i ├── std │ ├── README │ ├── _std_deque.i │ ├── std_alloc.i │ ├── std_array.i │ ├── std_basic_string.i │ ├── std_char_traits.i │ ├── std_common.i │ ├── std_container.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_ios.i │ ├── std_iostream.i │ ├── std_list.i │ ├── std_map.i │ ├── std_multimap.i │ ├── std_multiset.i │ ├── std_pair.i │ ├── std_queue.i │ ├── std_set.i │ ├── std_sstream.i │ ├── std_stack.i │ ├── std_streambuf.i │ ├── std_string.i │ ├── std_unordered_map.i │ ├── std_unordered_multimap.i │ ├── std_unordered_multiset.i │ ├── std_unordered_set.i │ ├── std_vector.i │ ├── std_vectora.i │ ├── std_wios.i │ ├── std_wiostream.i │ ├── std_wsstream.i │ ├── std_wstreambuf.i │ └── std_wstring.i ├── std_except.i ├── stdint.i ├── stl.i ├── swig.swg ├── swigarch.i ├── swigerrors.swg ├── swigfragments.swg ├── swiginit.swg ├── swiglabels.swg ├── swigrun.i ├── swigrun.swg ├── swigwarnings.swg ├── tcl │ ├── Makefile.in │ ├── argcargv.i │ ├── attribute.i │ ├── carrays.i │ ├── cdata.i │ ├── cmalloc.i │ ├── cpointer.i │ ├── cstring.i │ ├── cwstring.i │ ├── exception.i │ ├── factory.i │ ├── std_auto_ptr.i │ ├── std_common.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_string_view.i │ ├── std_unique_ptr.i │ ├── std_vector.i │ ├── std_wstring.i │ ├── stl.i │ ├── swigmove.i │ ├── tcl8.swg │ ├── tclapi.swg │ ├── tclerrors.swg │ ├── tclfragments.swg │ ├── tclinit.swg │ ├── tclinterp.i │ ├── tclkw.swg │ ├── tclmacros.swg │ ├── tclopers.swg │ ├── tclprimtypes.swg │ ├── tclresult.i │ ├── tclrun.swg │ ├── tclruntime.swg │ ├── tclsh.i │ ├── tclstrings.swg │ ├── tcltypemaps.swg │ ├── tcluserdir.swg │ ├── tclwstrings.swg │ ├── typemaps.i │ └── wish.i ├── typemaps │ ├── README │ ├── attribute.swg │ ├── carrays.swg │ ├── cdata.swg │ ├── cmalloc.swg │ ├── cpointer.swg │ ├── cstring.swg │ ├── cstrings.swg │ ├── cwstring.swg │ ├── enumint.swg │ ├── exception.swg │ ├── factory.swg │ ├── fragments.swg │ ├── implicit.swg │ ├── inoutlist.swg │ ├── misctypes.swg │ ├── primtypes.swg │ ├── ptrtypes.swg │ ├── std_except.swg │ ├── std_string.swg │ ├── std_string_view.swg │ ├── std_strings.swg │ ├── std_wstring.swg │ ├── string.swg │ ├── strings.swg │ ├── swigmacros.swg │ ├── swigmove.swg │ ├── swigobject.swg │ ├── swigtype.swg │ ├── swigtypemaps.swg │ ├── typemaps.swg │ ├── valtypes.swg │ ├── void.swg │ └── wstring.swg ├── wchar.i ├── windows.i └── xml │ ├── typemaps.i │ └── xml.swg ├── Makefile.in ├── README ├── RELEASENOTES ├── Source ├── CParse │ ├── cparse.h │ ├── cscanner.c │ ├── parser.y │ ├── templ.c │ └── util.c ├── DOH │ ├── README │ ├── base.c │ ├── doh.h │ ├── dohint.h │ ├── file.c │ ├── fio.c │ ├── hash.c │ ├── list.c │ ├── memory.c │ ├── string.c │ └── void.c ├── Doxygen │ ├── doxycommands.h │ ├── doxyentity.cxx │ ├── doxyentity.h │ ├── doxyparser.cxx │ ├── doxyparser.h │ ├── doxytranslator.cxx │ ├── doxytranslator.h │ ├── javadoc.cxx │ ├── javadoc.h │ ├── pydoc.cxx │ └── pydoc.h ├── Include │ └── swigwarn.h ├── Makefile.am ├── Modules │ ├── README │ ├── allocate.cxx │ ├── contract.cxx │ ├── csharp.cxx │ ├── d.cxx │ ├── directors.cxx │ ├── emit.cxx │ ├── fortran.cxx │ ├── go.cxx │ ├── guile.cxx │ ├── interface.cxx │ ├── java.cxx │ ├── javascript.cxx │ ├── lang.cxx │ ├── lua.cxx │ ├── main.cxx │ ├── mzscheme.cxx │ ├── nested.cxx │ ├── ocaml.cxx │ ├── octave.cxx │ ├── overload.cxx │ ├── perl5.cxx │ ├── php.cxx │ ├── python.cxx │ ├── r.cxx │ ├── ruby.cxx │ ├── scilab.cxx │ ├── swigmain.cxx │ ├── swigmod.h │ ├── tcl8.cxx │ ├── typepass.cxx │ ├── utils.cxx │ └── xml.cxx ├── Preprocessor │ ├── cpp.c │ ├── expr.c │ └── preprocessor.h ├── README └── Swig │ ├── cwrap.c │ ├── deprecate.c │ ├── error.c │ ├── extend.c │ ├── fragment.c │ ├── getopt.c │ ├── include.c │ ├── misc.c │ ├── naming.c │ ├── parms.c │ ├── scanner.c │ ├── stype.c │ ├── swig.h │ ├── swigfile.h │ ├── swigopt.h │ ├── swigparm.h │ ├── swigscan.h │ ├── swigtree.h │ ├── swigwrap.h │ ├── symbol.c │ ├── tree.c │ ├── typemap.c │ ├── typeobj.c │ ├── typesys.c │ └── wrapfunc.c ├── TODO ├── Tools ├── CI-linux-environment.sh ├── CI-linux-install.sh ├── GHA-linux-install.sh ├── capitalize ├── cmake │ ├── FindPCRE2.cmake │ └── swigconfig.h.in ├── config │ ├── ac_compile_warnings.m4 │ ├── ac_define_dir.m4 │ ├── ax_boost_base.m4 │ ├── ax_compare_version.m4 │ ├── ax_path_generic.m4 │ └── m4_ax_cxx_compile_stdcxx.m4 ├── convertpath ├── javascript │ ├── Makefile.in │ ├── javascript.cxx │ ├── js_shell.cxx │ ├── js_shell.h │ ├── jsc_shell.cxx │ └── v8_shell.cxx ├── mkdist.py ├── mkrelease.py ├── mkwindows.sh ├── obs-buildlogs.py ├── obs-update ├── pcre-build.sh ├── pyname_patch.py ├── setup.py.tmpl ├── swig.gdb ├── testflags.py ├── utils.py └── vcfilter ├── Win └── README.txt ├── appveyor.yml ├── autogen.sh ├── configure.ac └── preinst-swig.in /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/ANNOUNCE -------------------------------------------------------------------------------- /CCache/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/COPYING -------------------------------------------------------------------------------- /CCache/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/Makefile.in -------------------------------------------------------------------------------- /CCache/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/README -------------------------------------------------------------------------------- /CCache/README.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/README.swig -------------------------------------------------------------------------------- /CCache/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/args.c -------------------------------------------------------------------------------- /CCache/ccache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/ccache.c -------------------------------------------------------------------------------- /CCache/ccache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/ccache.h -------------------------------------------------------------------------------- /CCache/ccache.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/ccache.yo -------------------------------------------------------------------------------- /CCache/cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/cleanup.c -------------------------------------------------------------------------------- /CCache/config_win32.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/config_win32.h.in -------------------------------------------------------------------------------- /CCache/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/configure.ac -------------------------------------------------------------------------------- /CCache/debian/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/debian/NEWS -------------------------------------------------------------------------------- /CCache/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/debian/changelog -------------------------------------------------------------------------------- /CCache/debian/compat: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /CCache/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/debian/control -------------------------------------------------------------------------------- /CCache/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/debian/copyright -------------------------------------------------------------------------------- /CCache/debian/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/debian/dirs -------------------------------------------------------------------------------- /CCache/debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /CCache/debian/examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/debian/examples -------------------------------------------------------------------------------- /CCache/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/debian/rules -------------------------------------------------------------------------------- /CCache/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/debian/watch -------------------------------------------------------------------------------- /CCache/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/execute.c -------------------------------------------------------------------------------- /CCache/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/hash.c -------------------------------------------------------------------------------- /CCache/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/install-sh -------------------------------------------------------------------------------- /CCache/mdfour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/mdfour.c -------------------------------------------------------------------------------- /CCache/mdfour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/mdfour.h -------------------------------------------------------------------------------- /CCache/packaging/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/packaging/README -------------------------------------------------------------------------------- /CCache/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/snprintf.c -------------------------------------------------------------------------------- /CCache/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/stats.c -------------------------------------------------------------------------------- /CCache/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/test.sh -------------------------------------------------------------------------------- /CCache/unify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/unify.c -------------------------------------------------------------------------------- /CCache/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/util.c -------------------------------------------------------------------------------- /CCache/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CCache/web/index.html -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CHANGES -------------------------------------------------------------------------------- /CHANGES.current: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CHANGES.current -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Doc/Devel/cmdopt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Devel/cmdopt.html -------------------------------------------------------------------------------- /Doc/Devel/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Devel/file.html -------------------------------------------------------------------------------- /Doc/Devel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Devel/index.html -------------------------------------------------------------------------------- /Doc/Devel/internals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Devel/internals.html -------------------------------------------------------------------------------- /Doc/Devel/migrate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Devel/migrate.txt -------------------------------------------------------------------------------- /Doc/Devel/parm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Devel/parm.html -------------------------------------------------------------------------------- /Doc/Devel/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Devel/runtime.txt -------------------------------------------------------------------------------- /Doc/Devel/scanner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Devel/scanner.html -------------------------------------------------------------------------------- /Doc/Devel/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Devel/tree.html -------------------------------------------------------------------------------- /Doc/Devel/wrapobj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Devel/wrapobj.html -------------------------------------------------------------------------------- /Doc/Manual/Android.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Android.html -------------------------------------------------------------------------------- /Doc/Manual/Arguments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Arguments.html -------------------------------------------------------------------------------- /Doc/Manual/CCache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/CCache.html -------------------------------------------------------------------------------- /Doc/Manual/CSharp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/CSharp.html -------------------------------------------------------------------------------- /Doc/Manual/Contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Contents.html -------------------------------------------------------------------------------- /Doc/Manual/Contract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Contract.html -------------------------------------------------------------------------------- /Doc/Manual/D.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/D.html -------------------------------------------------------------------------------- /Doc/Manual/Doxygen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Doxygen.html -------------------------------------------------------------------------------- /Doc/Manual/Extending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Extending.html -------------------------------------------------------------------------------- /Doc/Manual/Fortran.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Fortran.html -------------------------------------------------------------------------------- /Doc/Manual/Go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Go.html -------------------------------------------------------------------------------- /Doc/Manual/Guile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Guile.html -------------------------------------------------------------------------------- /Doc/Manual/Java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Java.html -------------------------------------------------------------------------------- /Doc/Manual/Library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Library.html -------------------------------------------------------------------------------- /Doc/Manual/Lua.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Lua.html -------------------------------------------------------------------------------- /Doc/Manual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Makefile -------------------------------------------------------------------------------- /Doc/Manual/Modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Modules.html -------------------------------------------------------------------------------- /Doc/Manual/Mzscheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Mzscheme.html -------------------------------------------------------------------------------- /Doc/Manual/Ocaml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Ocaml.html -------------------------------------------------------------------------------- /Doc/Manual/Octave.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Octave.html -------------------------------------------------------------------------------- /Doc/Manual/Perl5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Perl5.html -------------------------------------------------------------------------------- /Doc/Manual/Php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Php.html -------------------------------------------------------------------------------- /Doc/Manual/Preface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Preface.html -------------------------------------------------------------------------------- /Doc/Manual/Python.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Python.html -------------------------------------------------------------------------------- /Doc/Manual/R.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/R.html -------------------------------------------------------------------------------- /Doc/Manual/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/README -------------------------------------------------------------------------------- /Doc/Manual/Ruby.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Ruby.html -------------------------------------------------------------------------------- /Doc/Manual/SWIG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/SWIG.html -------------------------------------------------------------------------------- /Doc/Manual/SWIGPlus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/SWIGPlus.html -------------------------------------------------------------------------------- /Doc/Manual/Scilab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Scilab.html -------------------------------------------------------------------------------- /Doc/Manual/Scripting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Scripting.html -------------------------------------------------------------------------------- /Doc/Manual/Sections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Sections.html -------------------------------------------------------------------------------- /Doc/Manual/Tcl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Tcl.html -------------------------------------------------------------------------------- /Doc/Manual/Typemaps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Typemaps.html -------------------------------------------------------------------------------- /Doc/Manual/Varargs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Varargs.html -------------------------------------------------------------------------------- /Doc/Manual/Warnings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Warnings.html -------------------------------------------------------------------------------- /Doc/Manual/Windows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/Windows.html -------------------------------------------------------------------------------- /Doc/Manual/ch2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/ch2.1.png -------------------------------------------------------------------------------- /Doc/Manual/chapters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/chapters -------------------------------------------------------------------------------- /Doc/Manual/fixstyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/fixstyle.py -------------------------------------------------------------------------------- /Doc/Manual/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/index.html -------------------------------------------------------------------------------- /Doc/Manual/makechap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/makechap.py -------------------------------------------------------------------------------- /Doc/Manual/maketoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/maketoc.py -------------------------------------------------------------------------------- /Doc/Manual/src/Fortran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/src/Fortran.md -------------------------------------------------------------------------------- /Doc/Manual/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/src/README.md -------------------------------------------------------------------------------- /Doc/Manual/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/src/style.css -------------------------------------------------------------------------------- /Doc/Manual/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/style.css -------------------------------------------------------------------------------- /Doc/Manual/swig16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/Manual/swig16.png -------------------------------------------------------------------------------- /Doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Doc/README -------------------------------------------------------------------------------- /Examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/Makefile.in -------------------------------------------------------------------------------- /Examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/README -------------------------------------------------------------------------------- /Examples/android/check.list: -------------------------------------------------------------------------------- 1 | # see top-level Makefile.in 2 | class 3 | extend 4 | simple 5 | -------------------------------------------------------------------------------- /Examples/android/extend/jni/Application.mk: -------------------------------------------------------------------------------- 1 | # File: Application.mk 2 | APP_STL := gnustl_static 3 | -------------------------------------------------------------------------------- /Examples/d/callback/Makefile: -------------------------------------------------------------------------------- 1 | include $(SRCDIR)../example.mk 2 | -------------------------------------------------------------------------------- /Examples/d/check.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/d/check.list -------------------------------------------------------------------------------- /Examples/d/class/Makefile: -------------------------------------------------------------------------------- 1 | include $(SRCDIR)../example.mk 2 | -------------------------------------------------------------------------------- /Examples/d/constants/Makefile: -------------------------------------------------------------------------------- 1 | include $(SRCDIR)../example.mk 2 | -------------------------------------------------------------------------------- /Examples/d/enum/Makefile: -------------------------------------------------------------------------------- 1 | include $(SRCDIR)../example.mk 2 | -------------------------------------------------------------------------------- /Examples/d/enum/example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/d/enum/example.h -------------------------------------------------------------------------------- /Examples/d/enum/example.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/d/enum/example.i -------------------------------------------------------------------------------- /Examples/d/example.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/d/example.mk -------------------------------------------------------------------------------- /Examples/d/extend/Makefile: -------------------------------------------------------------------------------- 1 | include $(SRCDIR)../example.mk 2 | -------------------------------------------------------------------------------- /Examples/d/funcptr/Makefile: -------------------------------------------------------------------------------- 1 | include $(SRCDIR)../example.mk 2 | -------------------------------------------------------------------------------- /Examples/d/simple/Makefile: -------------------------------------------------------------------------------- 1 | include $(SRCDIR)../example.mk 2 | -------------------------------------------------------------------------------- /Examples/d/variables/Makefile: -------------------------------------------------------------------------------- 1 | include $(SRCDIR)../example.mk 2 | -------------------------------------------------------------------------------- /Examples/go/check.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/go/check.list -------------------------------------------------------------------------------- /Examples/go/enum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/go/enum/Makefile -------------------------------------------------------------------------------- /Examples/go/enum/enum.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/go/enum/enum.cxx -------------------------------------------------------------------------------- /Examples/go/enum/runme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/go/enum/runme.go -------------------------------------------------------------------------------- /Examples/go/extend/ceo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/go/extend/ceo.go -------------------------------------------------------------------------------- /Examples/go/goin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/go/goin/Makefile -------------------------------------------------------------------------------- /Examples/go/goin/runme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/go/goin/runme.go -------------------------------------------------------------------------------- /Examples/go/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/go/index.html -------------------------------------------------------------------------------- /Examples/guile/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/guile/README -------------------------------------------------------------------------------- /Examples/guile/check.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/guile/check.list -------------------------------------------------------------------------------- /Examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/index.html -------------------------------------------------------------------------------- /Examples/java/check.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/java/check.list -------------------------------------------------------------------------------- /Examples/java/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/java/index.html -------------------------------------------------------------------------------- /Examples/javascript/class/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/javascript/constant/Makefile: -------------------------------------------------------------------------------- 1 | include $(SRCDIR)../example.mk 2 | -------------------------------------------------------------------------------- /Examples/javascript/constant/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/javascript/enum/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/javascript/exception/example.cxx: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Examples/javascript/exception/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/javascript/functor/Makefile: -------------------------------------------------------------------------------- 1 | _CPP = _cpp 2 | 3 | include $(SRCDIR)../example.mk 4 | -------------------------------------------------------------------------------- /Examples/javascript/functor/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/javascript/native/Makefile: -------------------------------------------------------------------------------- 1 | _CPP = _cpp 2 | 3 | include $(SRCDIR)../example.mk 4 | -------------------------------------------------------------------------------- /Examples/javascript/native/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/javascript/nspace/Makefile: -------------------------------------------------------------------------------- 1 | _CPP = _cpp 2 | 3 | include $(SRCDIR)../example.mk 4 | -------------------------------------------------------------------------------- /Examples/javascript/nspace/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/javascript/operator/Makefile: -------------------------------------------------------------------------------- 1 | _CPP = _cpp 2 | 3 | include $(SRCDIR)../example.mk 4 | -------------------------------------------------------------------------------- /Examples/javascript/operator/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/javascript/overload/Makefile: -------------------------------------------------------------------------------- 1 | _CPP = _cpp 2 | 3 | include $(SRCDIR)../example.mk 4 | -------------------------------------------------------------------------------- /Examples/javascript/overload/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/javascript/pointer/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/javascript/reference/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/javascript/simple/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/javascript/template/Makefile: -------------------------------------------------------------------------------- 1 | _CPP = _cpp 2 | 3 | include $(SRCDIR)../example.mk 4 | -------------------------------------------------------------------------------- /Examples/javascript/template/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/javascript/variables/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/lua/check.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/lua/check.list -------------------------------------------------------------------------------- /Examples/lua/import.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/lua/import.lua -------------------------------------------------------------------------------- /Examples/lua/import/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/lua/import/bar.h -------------------------------------------------------------------------------- /Examples/lua/import/bar.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/lua/import/bar.i -------------------------------------------------------------------------------- /Examples/lua/import/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/lua/import/foo.h -------------------------------------------------------------------------------- /Examples/lua/import/foo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/lua/import/foo.i -------------------------------------------------------------------------------- /Examples/lua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/lua/lua.c -------------------------------------------------------------------------------- /Examples/ocaml/check.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/ocaml/check.list -------------------------------------------------------------------------------- /Examples/octave/constants/Makefile: -------------------------------------------------------------------------------- 1 | CXXSRCS = 2 | 3 | include $(SRCDIR)../example.mk 4 | -------------------------------------------------------------------------------- /Examples/octave/functor/Makefile: -------------------------------------------------------------------------------- 1 | CXXSRCS = 2 | 3 | include $(SRCDIR)../example.mk 4 | -------------------------------------------------------------------------------- /Examples/octave/operator/Makefile: -------------------------------------------------------------------------------- 1 | CXXSRCS = 2 | 3 | include $(SRCDIR)../example.mk 4 | -------------------------------------------------------------------------------- /Examples/octave/template/Makefile: -------------------------------------------------------------------------------- 1 | CXXSRCS = 2 | 3 | include $(SRCDIR)../example.mk 4 | -------------------------------------------------------------------------------- /Examples/perl5/check.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/perl5/check.list -------------------------------------------------------------------------------- /Examples/perl5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/perl5/index.html -------------------------------------------------------------------------------- /Examples/perl5/inline/README: -------------------------------------------------------------------------------- 1 | This example requires the Inline::SWIG package. 2 | 3 | -------------------------------------------------------------------------------- /Examples/perl5/xmlstring/example.cxx: -------------------------------------------------------------------------------- 1 | #include "example.h" 2 | -------------------------------------------------------------------------------- /Examples/php/check.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/php/check.list -------------------------------------------------------------------------------- /Examples/python/docstrings/example.cxx: -------------------------------------------------------------------------------- 1 | #include "example.h" 2 | 3 | void Foo::bar() {} 4 | 5 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init1/py2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init1/py2/pkg2/__init__.py: -------------------------------------------------------------------------------- 1 | from bar import Pkg2_Bar 2 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init1/py3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init1/py3/pkg2/__init__.py: -------------------------------------------------------------------------------- 1 | from .bar import Pkg2_Bar 2 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init2/py2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init2/py2/pkg2/__init__.py: -------------------------------------------------------------------------------- 1 | from bar import Pkg2_Bar 2 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init2/py2/pkg2/pkg3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init2/py3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init2/py3/pkg2/__init__.py: -------------------------------------------------------------------------------- 1 | from .bar import Pkg2_Bar 2 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init2/py3/pkg2/pkg3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init3/py2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init3/py2/pkg2/__init__.py: -------------------------------------------------------------------------------- 1 | from bar import Pkg2_Bar 2 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init3/py2/pkg2/pkg3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init3/py2/pkg2/pkg3/pkg4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init3/py3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init3/py3/pkg2/__init__.py: -------------------------------------------------------------------------------- 1 | from .bar import Pkg2_Bar 2 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init3/py3/pkg2/pkg3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/from_init3/py3/pkg2/pkg3/pkg4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport1/py2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport1/py2/pkg2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport1/py2/pkg2/pkg3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport1/py3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport1/py3/pkg2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport1/py3/pkg2/pkg3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport2/py2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport2/py2/pkg2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport2/py2/pkg2/pkg3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport2/py2/pkg2/pkg3/pkg4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport2/py3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport2/py3/pkg2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport2/py3/pkg2/pkg3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport2/py3/pkg2/pkg3/pkg4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport3/py2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport3/py2/pkg2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport3/py2/pkg2/pkg3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport3/py3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport3/py3/pkg2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/relativeimport3/py3/pkg2/pkg3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/same_modnames1/pkg1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/same_modnames1/pkg2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/same_modnames2/pkg1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/same_modnames2/pkg1/pkg2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/python/import_packages/split_modules/vanilla/pkg1/__init__.py: -------------------------------------------------------------------------------- 1 | # killroy was here 2 | -------------------------------------------------------------------------------- /Examples/python/import_packages/split_modules/vanilla_split/pkg1/__init__.py: -------------------------------------------------------------------------------- 1 | # killroy was here 2 | -------------------------------------------------------------------------------- /Examples/r/check.list: -------------------------------------------------------------------------------- 1 | # see top-level Makefile.in 2 | class 3 | simple 4 | -------------------------------------------------------------------------------- /Examples/r/class/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/r/class/Makefile -------------------------------------------------------------------------------- /Examples/r/class/runme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/r/class/runme.R -------------------------------------------------------------------------------- /Examples/r/simple/runme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/r/simple/runme.R -------------------------------------------------------------------------------- /Examples/ruby/check.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/ruby/check.list -------------------------------------------------------------------------------- /Examples/ruby/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/ruby/index.html -------------------------------------------------------------------------------- /Examples/tcl/check.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/tcl/check.list -------------------------------------------------------------------------------- /Examples/tcl/import/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/tcl/import/bar.h -------------------------------------------------------------------------------- /Examples/tcl/import/bar.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/tcl/import/bar.i -------------------------------------------------------------------------------- /Examples/tcl/import/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/tcl/import/foo.h -------------------------------------------------------------------------------- /Examples/tcl/import/foo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/tcl/import/foo.i -------------------------------------------------------------------------------- /Examples/tcl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/tcl/index.html -------------------------------------------------------------------------------- /Examples/test-suite/empty.i: -------------------------------------------------------------------------------- 1 | %module empty 2 | -------------------------------------------------------------------------------- /Examples/test-suite/empty_c.i: -------------------------------------------------------------------------------- 1 | %module empty_c 2 | -------------------------------------------------------------------------------- /Examples/test-suite/errors/c_bad_native.i: -------------------------------------------------------------------------------- 1 | %module xxx 2 | 3 | %native(foo) int foo; 4 | 5 | 6 | -------------------------------------------------------------------------------- /Examples/test-suite/errors/c_extra_rbrace.i: -------------------------------------------------------------------------------- 1 | %module xxx 2 | 3 | int foo(int); 4 | 5 | } 6 | 7 | 8 | -------------------------------------------------------------------------------- /Examples/test-suite/errors/cpp_namespace_aliasundef.i: -------------------------------------------------------------------------------- 1 | %module xxx 2 | 3 | namespace B = blah; 4 | -------------------------------------------------------------------------------- /Examples/test-suite/errors/cpp_no_access.i: -------------------------------------------------------------------------------- 1 | %module xxx 2 | 3 | class Bar : foo { 4 | }; 5 | -------------------------------------------------------------------------------- /Examples/test-suite/errors/nomodule.i: -------------------------------------------------------------------------------- 1 | /* No module name */ 2 | int foo(int); 3 | -------------------------------------------------------------------------------- /Examples/test-suite/errors/pp_missing_endif.i: -------------------------------------------------------------------------------- 1 | %module xxx 2 | 3 | #ifdef FOO 4 | int x; 5 | 6 | 7 | -------------------------------------------------------------------------------- /Examples/test-suite/errors/pp_missing_file.i: -------------------------------------------------------------------------------- 1 | %module xxx 2 | 3 | %include "missing_filename.i" 4 | -------------------------------------------------------------------------------- /Examples/test-suite/errors/pp_missing_rblock.i: -------------------------------------------------------------------------------- 1 | %module xxx 2 | 3 | %{ 4 | int x; 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Examples/test-suite/errors/pp_pragma.i: -------------------------------------------------------------------------------- 1 | %module xxx 2 | 3 | 4 | #pragma SWIG rubbish() 5 | 6 | 7 | -------------------------------------------------------------------------------- /Examples/test-suite/errors/pp_unterm_comment.i: -------------------------------------------------------------------------------- 1 | %module xxx 2 | 3 | /* Hello 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Examples/test-suite/errors/swig_fragment_missing.i: -------------------------------------------------------------------------------- 1 | %module xxx 2 | 3 | %fragment("awol"); 4 | 5 | -------------------------------------------------------------------------------- /Examples/test-suite/errors/swig_typemap_copy.i: -------------------------------------------------------------------------------- 1 | %module xxx 2 | 3 | %typemap(in) int = blah; 4 | -------------------------------------------------------------------------------- /Examples/test-suite/import_nomodule.h: -------------------------------------------------------------------------------- 1 | class Foo { }; 2 | typedef int Integer; 3 | -------------------------------------------------------------------------------- /Examples/test-suite/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/test-suite/mod.h -------------------------------------------------------------------------------- /Examples/test-suite/mod.list: -------------------------------------------------------------------------------- 1 | mod_a 2 | mod_b 3 | -------------------------------------------------------------------------------- /Examples/test-suite/octave/samename_runme.m: -------------------------------------------------------------------------------- 1 | samename 2 | -------------------------------------------------------------------------------- /Examples/test-suite/octave/template_construct_runme.m: -------------------------------------------------------------------------------- 1 | template_construct 2 | -------------------------------------------------------------------------------- /Examples/test-suite/preproc_include_h1.i: -------------------------------------------------------------------------------- 1 | #define const1 1 2 | -------------------------------------------------------------------------------- /Examples/test-suite/preproc_include_h2.i: -------------------------------------------------------------------------------- 1 | #define const2 2 2 | -------------------------------------------------------------------------------- /Examples/test-suite/preproc_include_h3.i: -------------------------------------------------------------------------------- 1 | #define const3 3 2 | -------------------------------------------------------------------------------- /Examples/test-suite/python/empty_c_runme.py: -------------------------------------------------------------------------------- 1 | import empty_c 2 | -------------------------------------------------------------------------------- /Examples/test-suite/python/empty_runme.py: -------------------------------------------------------------------------------- 1 | import empty 2 | -------------------------------------------------------------------------------- /Examples/test-suite/python/template_construct_runme.py: -------------------------------------------------------------------------------- 1 | import template_construct 2 | -------------------------------------------------------------------------------- /Examples/test-suite/schemerunme/name.scm: -------------------------------------------------------------------------------- 1 | (foo-2) 2 | bar-2 3 | Baz-2 4 | 5 | (exit 0) 6 | -------------------------------------------------------------------------------- /Examples/test-suite/scilab/swigtest.quit: -------------------------------------------------------------------------------- 1 | // Exit from Scilab 2 | exit 3 | -------------------------------------------------------------------------------- /Examples/test-suite/sym.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/test-suite/sym.i -------------------------------------------------------------------------------- /Examples/xml/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/xml/Makefile.in -------------------------------------------------------------------------------- /Examples/xml/error.i: -------------------------------------------------------------------------------- 1 | %module error 2 | enum { RED=10, GREEN, BLUE }; -------------------------------------------------------------------------------- /Examples/xml/example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/xml/example.h -------------------------------------------------------------------------------- /Examples/xml/example.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/xml/example.i -------------------------------------------------------------------------------- /Examples/xml/example_p5.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/xml/example_p5.i -------------------------------------------------------------------------------- /Examples/xml/example_ro.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/xml/example_ro.i -------------------------------------------------------------------------------- /Examples/xml/gnarly.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Examples/xml/gnarly.i -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/LICENSE-GPL -------------------------------------------------------------------------------- /LICENSE-UNIVERSITIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/LICENSE-UNIVERSITIES -------------------------------------------------------------------------------- /Lib/allkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/allkw.swg -------------------------------------------------------------------------------- /Lib/attribute.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/attribute.i -------------------------------------------------------------------------------- /Lib/carrays.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/carrays.i -------------------------------------------------------------------------------- /Lib/cdata.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/cdata.i -------------------------------------------------------------------------------- /Lib/cmalloc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/cmalloc.i -------------------------------------------------------------------------------- /Lib/constraints.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/constraints.i -------------------------------------------------------------------------------- /Lib/cpointer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/cpointer.i -------------------------------------------------------------------------------- /Lib/csharp/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/argcargv.i -------------------------------------------------------------------------------- /Lib/csharp/complex.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/complex.i -------------------------------------------------------------------------------- /Lib/csharp/csharp.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/csharp.swg -------------------------------------------------------------------------------- /Lib/csharp/csharphead.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/csharphead.swg -------------------------------------------------------------------------------- /Lib/csharp/csharpkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/csharpkw.swg -------------------------------------------------------------------------------- /Lib/csharp/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/director.swg -------------------------------------------------------------------------------- /Lib/csharp/enums.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/enums.swg -------------------------------------------------------------------------------- /Lib/csharp/enumsimple.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/enumsimple.swg -------------------------------------------------------------------------------- /Lib/csharp/std_array.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/std_array.i -------------------------------------------------------------------------------- /Lib/csharp/std_auto_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/std_auto_ptr.i -------------------------------------------------------------------------------- /Lib/csharp/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/std_common.i -------------------------------------------------------------------------------- /Lib/csharp/std_complex.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/std_complex.i -------------------------------------------------------------------------------- /Lib/csharp/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/csharp/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/std_except.i -------------------------------------------------------------------------------- /Lib/csharp/std_list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/std_list.i -------------------------------------------------------------------------------- /Lib/csharp/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/std_map.i -------------------------------------------------------------------------------- /Lib/csharp/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/std_pair.i -------------------------------------------------------------------------------- /Lib/csharp/std_set.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/std_set.i -------------------------------------------------------------------------------- /Lib/csharp/std_shared_ptr.i: -------------------------------------------------------------------------------- 1 | #define SWIG_SHARED_PTR_NAMESPACE std 2 | %include 3 | -------------------------------------------------------------------------------- /Lib/csharp/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/std_string.i -------------------------------------------------------------------------------- /Lib/csharp/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/std_vector.i -------------------------------------------------------------------------------- /Lib/csharp/std_wstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/std_wstring.i -------------------------------------------------------------------------------- /Lib/csharp/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/stl.i -------------------------------------------------------------------------------- /Lib/csharp/swigmove.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/swigmove.i -------------------------------------------------------------------------------- /Lib/csharp/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/typemaps.i -------------------------------------------------------------------------------- /Lib/csharp/wchar.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/csharp/wchar.i -------------------------------------------------------------------------------- /Lib/cstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/cstring.i -------------------------------------------------------------------------------- /Lib/cwstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/cwstring.i -------------------------------------------------------------------------------- /Lib/d/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/argcargv.i -------------------------------------------------------------------------------- /Lib/d/boost_shared_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/boost_shared_ptr.i -------------------------------------------------------------------------------- /Lib/d/carrays.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/carrays.i -------------------------------------------------------------------------------- /Lib/d/cpointer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/cpointer.i -------------------------------------------------------------------------------- /Lib/d/d.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/d.swg -------------------------------------------------------------------------------- /Lib/d/dclassgen.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/dclassgen.swg -------------------------------------------------------------------------------- /Lib/d/ddirectives.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/ddirectives.swg -------------------------------------------------------------------------------- /Lib/d/denums.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/denums.swg -------------------------------------------------------------------------------- /Lib/d/dexception.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/dexception.swg -------------------------------------------------------------------------------- /Lib/d/dhead.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/dhead.swg -------------------------------------------------------------------------------- /Lib/d/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/director.swg -------------------------------------------------------------------------------- /Lib/d/dkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/dkw.swg -------------------------------------------------------------------------------- /Lib/d/doperators.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/doperators.swg -------------------------------------------------------------------------------- /Lib/d/dprimitives.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/dprimitives.swg -------------------------------------------------------------------------------- /Lib/d/dstrings.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/dstrings.swg -------------------------------------------------------------------------------- /Lib/d/dswigtype.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/dswigtype.swg -------------------------------------------------------------------------------- /Lib/d/dvoid.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/dvoid.swg -------------------------------------------------------------------------------- /Lib/d/std_auto_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/std_auto_ptr.i -------------------------------------------------------------------------------- /Lib/d/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/std_common.i -------------------------------------------------------------------------------- /Lib/d/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/d/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/std_except.i -------------------------------------------------------------------------------- /Lib/d/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/std_map.i -------------------------------------------------------------------------------- /Lib/d/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/std_pair.i -------------------------------------------------------------------------------- /Lib/d/std_shared_ptr.i: -------------------------------------------------------------------------------- 1 | #define SWIG_SHARED_PTR_NAMESPACE std 2 | %include 3 | -------------------------------------------------------------------------------- /Lib/d/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/std_string.i -------------------------------------------------------------------------------- /Lib/d/std_unique_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/std_unique_ptr.i -------------------------------------------------------------------------------- /Lib/d/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/std_vector.i -------------------------------------------------------------------------------- /Lib/d/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/stl.i -------------------------------------------------------------------------------- /Lib/d/swigmove.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/swigmove.i -------------------------------------------------------------------------------- /Lib/d/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/typemaps.i -------------------------------------------------------------------------------- /Lib/d/wrapperloader.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/d/wrapperloader.swg -------------------------------------------------------------------------------- /Lib/director_common.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/director_common.swg -------------------------------------------------------------------------------- /Lib/exception.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/exception.i -------------------------------------------------------------------------------- /Lib/fortran/bindc.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/bindc.swg -------------------------------------------------------------------------------- /Lib/fortran/ccomplex.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/ccomplex.i -------------------------------------------------------------------------------- /Lib/fortran/classes.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/classes.swg -------------------------------------------------------------------------------- /Lib/fortran/complex.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/complex.i -------------------------------------------------------------------------------- /Lib/fortran/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/director.swg -------------------------------------------------------------------------------- /Lib/fortran/enums.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/enums.swg -------------------------------------------------------------------------------- /Lib/fortran/exception.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/exception.i -------------------------------------------------------------------------------- /Lib/fortran/fortran.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/fortran.swg -------------------------------------------------------------------------------- /Lib/fortran/fortrankw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/fortrankw.swg -------------------------------------------------------------------------------- /Lib/fortran/funptrs.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/funptrs.swg -------------------------------------------------------------------------------- /Lib/fortran/memfunptr.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/memfunptr.swg -------------------------------------------------------------------------------- /Lib/fortran/std_array.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/std_array.i -------------------------------------------------------------------------------- /Lib/fortran/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/std_common.i -------------------------------------------------------------------------------- /Lib/fortran/std_complex.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/std_complex.i -------------------------------------------------------------------------------- /Lib/fortran/std_deque.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/std_deque.i -------------------------------------------------------------------------------- /Lib/fortran/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/std_except.i -------------------------------------------------------------------------------- /Lib/fortran/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/std_map.i -------------------------------------------------------------------------------- /Lib/fortran/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/std_pair.i -------------------------------------------------------------------------------- /Lib/fortran/std_set.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/std_set.i -------------------------------------------------------------------------------- /Lib/fortran/std_span.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/std_span.i -------------------------------------------------------------------------------- /Lib/fortran/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/std_string.i -------------------------------------------------------------------------------- /Lib/fortran/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/std_vector.i -------------------------------------------------------------------------------- /Lib/fortran/stdint.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/stdint.i -------------------------------------------------------------------------------- /Lib/fortran/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/stl.i -------------------------------------------------------------------------------- /Lib/fortran/swigmove.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/swigmove.i -------------------------------------------------------------------------------- /Lib/fortran/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/fortran/typemaps.i -------------------------------------------------------------------------------- /Lib/go/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/argcargv.i -------------------------------------------------------------------------------- /Lib/go/cdata.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/cdata.i -------------------------------------------------------------------------------- /Lib/go/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/director.swg -------------------------------------------------------------------------------- /Lib/go/exception.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/exception.i -------------------------------------------------------------------------------- /Lib/go/go.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/go.swg -------------------------------------------------------------------------------- /Lib/go/gokw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/gokw.swg -------------------------------------------------------------------------------- /Lib/go/goruntime.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/goruntime.swg -------------------------------------------------------------------------------- /Lib/go/gostring.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/gostring.swg -------------------------------------------------------------------------------- /Lib/go/std_array.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/std_array.i -------------------------------------------------------------------------------- /Lib/go/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/std_common.i -------------------------------------------------------------------------------- /Lib/go/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/go/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/std_except.i -------------------------------------------------------------------------------- /Lib/go/std_list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/std_list.i -------------------------------------------------------------------------------- /Lib/go/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/std_map.i -------------------------------------------------------------------------------- /Lib/go/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/std_pair.i -------------------------------------------------------------------------------- /Lib/go/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/std_string.i -------------------------------------------------------------------------------- /Lib/go/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/std_vector.i -------------------------------------------------------------------------------- /Lib/go/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/stl.i -------------------------------------------------------------------------------- /Lib/go/swigmove.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/swigmove.i -------------------------------------------------------------------------------- /Lib/go/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/go/typemaps.i -------------------------------------------------------------------------------- /Lib/guile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/Makefile -------------------------------------------------------------------------------- /Lib/guile/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/argcargv.i -------------------------------------------------------------------------------- /Lib/guile/common.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/common.scm -------------------------------------------------------------------------------- /Lib/guile/cplusplus.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/cplusplus.i -------------------------------------------------------------------------------- /Lib/guile/extra-install.list: -------------------------------------------------------------------------------- 1 | # see top-level Makefile.in 2 | common.scm 3 | -------------------------------------------------------------------------------- /Lib/guile/guile.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/guile.i -------------------------------------------------------------------------------- /Lib/guile/guile_scm.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/guile_scm.swg -------------------------------------------------------------------------------- /Lib/guile/guilemain.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/guilemain.i -------------------------------------------------------------------------------- /Lib/guile/interpreter.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/interpreter.i -------------------------------------------------------------------------------- /Lib/guile/list-vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/list-vector.i -------------------------------------------------------------------------------- /Lib/guile/ports.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/ports.i -------------------------------------------------------------------------------- /Lib/guile/std_auto_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/std_auto_ptr.i -------------------------------------------------------------------------------- /Lib/guile/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/std_common.i -------------------------------------------------------------------------------- /Lib/guile/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/guile/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/std_except.i -------------------------------------------------------------------------------- /Lib/guile/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/std_map.i -------------------------------------------------------------------------------- /Lib/guile/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/std_pair.i -------------------------------------------------------------------------------- /Lib/guile/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/std_string.i -------------------------------------------------------------------------------- /Lib/guile/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/std_vector.i -------------------------------------------------------------------------------- /Lib/guile/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/stl.i -------------------------------------------------------------------------------- /Lib/guile/swigmove.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/swigmove.i -------------------------------------------------------------------------------- /Lib/guile/swigrun.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/swigrun.i -------------------------------------------------------------------------------- /Lib/guile/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/guile/typemaps.i -------------------------------------------------------------------------------- /Lib/intrusive_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/intrusive_ptr.i -------------------------------------------------------------------------------- /Lib/inttypes.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/inttypes.i -------------------------------------------------------------------------------- /Lib/java/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/argcargv.i -------------------------------------------------------------------------------- /Lib/java/arrays_java.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/arrays_java.i -------------------------------------------------------------------------------- /Lib/java/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/director.swg -------------------------------------------------------------------------------- /Lib/java/enums.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/enums.swg -------------------------------------------------------------------------------- /Lib/java/enumsimple.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/enumsimple.swg -------------------------------------------------------------------------------- /Lib/java/enumtypesafe.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/enumtypesafe.swg -------------------------------------------------------------------------------- /Lib/java/java.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/java.swg -------------------------------------------------------------------------------- /Lib/java/javahead.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/javahead.swg -------------------------------------------------------------------------------- /Lib/java/javakw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/javakw.swg -------------------------------------------------------------------------------- /Lib/java/std_array.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/std_array.i -------------------------------------------------------------------------------- /Lib/java/std_auto_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/std_auto_ptr.i -------------------------------------------------------------------------------- /Lib/java/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/std_common.i -------------------------------------------------------------------------------- /Lib/java/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/java/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/std_except.i -------------------------------------------------------------------------------- /Lib/java/std_list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/std_list.i -------------------------------------------------------------------------------- /Lib/java/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/std_map.i -------------------------------------------------------------------------------- /Lib/java/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/std_pair.i -------------------------------------------------------------------------------- /Lib/java/std_set.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/std_set.i -------------------------------------------------------------------------------- /Lib/java/std_shared_ptr.i: -------------------------------------------------------------------------------- 1 | #define SWIG_SHARED_PTR_NAMESPACE std 2 | %include 3 | -------------------------------------------------------------------------------- /Lib/java/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/std_string.i -------------------------------------------------------------------------------- /Lib/java/std_unique_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/std_unique_ptr.i -------------------------------------------------------------------------------- /Lib/java/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/std_vector.i -------------------------------------------------------------------------------- /Lib/java/std_wstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/std_wstring.i -------------------------------------------------------------------------------- /Lib/java/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/stl.i -------------------------------------------------------------------------------- /Lib/java/swiginterface.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/swiginterface.i -------------------------------------------------------------------------------- /Lib/java/swigmove.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/swigmove.i -------------------------------------------------------------------------------- /Lib/java/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/typemaps.i -------------------------------------------------------------------------------- /Lib/java/various.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/java/various.i -------------------------------------------------------------------------------- /Lib/javascript/jsc/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/jsc/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/jsc/exception.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/jsc/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/jsc/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/jsc/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/jsc/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/jsc/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/javascript/jsc/stl.i -------------------------------------------------------------------------------- /Lib/javascript/jsc/swigmove.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/napi/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/napi/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/napi/exception.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/napi/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/napi/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/napi/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/napi/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/napi/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/javascript/napi/stl.i -------------------------------------------------------------------------------- /Lib/javascript/napi/swigmove.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/v8/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/v8/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/v8/exception.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/v8/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/v8/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/v8/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/v8/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/v8/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/javascript/v8/stl.i -------------------------------------------------------------------------------- /Lib/javascript/v8/swigmove.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascriptkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/javascriptkw.swg -------------------------------------------------------------------------------- /Lib/linkruntime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/linkruntime.c -------------------------------------------------------------------------------- /Lib/lua/_std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/_std_common.i -------------------------------------------------------------------------------- /Lib/lua/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/argcargv.i -------------------------------------------------------------------------------- /Lib/lua/carrays.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/carrays.i -------------------------------------------------------------------------------- /Lib/lua/factory.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/factory.i -------------------------------------------------------------------------------- /Lib/lua/lua.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/lua.swg -------------------------------------------------------------------------------- /Lib/lua/lua_fnptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/lua_fnptr.i -------------------------------------------------------------------------------- /Lib/lua/luakw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/luakw.swg -------------------------------------------------------------------------------- /Lib/lua/luarun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/luarun.swg -------------------------------------------------------------------------------- /Lib/lua/luaruntime.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/luaruntime.swg -------------------------------------------------------------------------------- /Lib/lua/luatypemaps.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/luatypemaps.swg -------------------------------------------------------------------------------- /Lib/lua/std_auto_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/std_auto_ptr.i -------------------------------------------------------------------------------- /Lib/lua/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/std_common.i -------------------------------------------------------------------------------- /Lib/lua/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/lua/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/std_except.i -------------------------------------------------------------------------------- /Lib/lua/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/std_map.i -------------------------------------------------------------------------------- /Lib/lua/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/std_pair.i -------------------------------------------------------------------------------- /Lib/lua/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/std_string.i -------------------------------------------------------------------------------- /Lib/lua/std_string_view.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/std_string_view.i -------------------------------------------------------------------------------- /Lib/lua/std_unique_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/std_unique_ptr.i -------------------------------------------------------------------------------- /Lib/lua/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/std_vector.i -------------------------------------------------------------------------------- /Lib/lua/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/stl.i -------------------------------------------------------------------------------- /Lib/lua/swigmove.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/swigmove.i -------------------------------------------------------------------------------- /Lib/lua/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/typemaps.i -------------------------------------------------------------------------------- /Lib/lua/wchar.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/lua/wchar.i -------------------------------------------------------------------------------- /Lib/math.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/math.i -------------------------------------------------------------------------------- /Lib/mzscheme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/mzscheme/Makefile -------------------------------------------------------------------------------- /Lib/mzscheme/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/mzscheme/argcargv.i -------------------------------------------------------------------------------- /Lib/mzscheme/mzrun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/mzscheme/mzrun.swg -------------------------------------------------------------------------------- /Lib/mzscheme/mzscheme.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/mzscheme/mzscheme.swg -------------------------------------------------------------------------------- /Lib/mzscheme/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/mzscheme/std_common.i -------------------------------------------------------------------------------- /Lib/mzscheme/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/mzscheme/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/mzscheme/std_map.i -------------------------------------------------------------------------------- /Lib/mzscheme/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/mzscheme/std_pair.i -------------------------------------------------------------------------------- /Lib/mzscheme/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/mzscheme/std_string.i -------------------------------------------------------------------------------- /Lib/mzscheme/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/mzscheme/std_vector.i -------------------------------------------------------------------------------- /Lib/mzscheme/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/mzscheme/stl.i -------------------------------------------------------------------------------- /Lib/mzscheme/swigmove.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/mzscheme/swigmove.i -------------------------------------------------------------------------------- /Lib/mzscheme/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/mzscheme/typemaps.i -------------------------------------------------------------------------------- /Lib/ocaml/carray.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/carray.i -------------------------------------------------------------------------------- /Lib/ocaml/class.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/class.swg -------------------------------------------------------------------------------- /Lib/ocaml/cstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/cstring.i -------------------------------------------------------------------------------- /Lib/ocaml/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/director.swg -------------------------------------------------------------------------------- /Lib/ocaml/ocaml.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/ocaml.i -------------------------------------------------------------------------------- /Lib/ocaml/ocaml.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/ocaml.swg -------------------------------------------------------------------------------- /Lib/ocaml/ocamlkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/ocamlkw.swg -------------------------------------------------------------------------------- /Lib/ocaml/ocamlrun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/ocamlrun.swg -------------------------------------------------------------------------------- /Lib/ocaml/ocamlrundec.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/ocamlrundec.swg -------------------------------------------------------------------------------- /Lib/ocaml/preamble.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/preamble.swg -------------------------------------------------------------------------------- /Lib/ocaml/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/std_common.i -------------------------------------------------------------------------------- /Lib/ocaml/std_complex.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/std_complex.i -------------------------------------------------------------------------------- /Lib/ocaml/std_deque.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/std_deque.i -------------------------------------------------------------------------------- /Lib/ocaml/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/std_except.i -------------------------------------------------------------------------------- /Lib/ocaml/std_list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/std_list.i -------------------------------------------------------------------------------- /Lib/ocaml/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/std_map.i -------------------------------------------------------------------------------- /Lib/ocaml/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/std_pair.i -------------------------------------------------------------------------------- /Lib/ocaml/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/std_string.i -------------------------------------------------------------------------------- /Lib/ocaml/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/std_vector.i -------------------------------------------------------------------------------- /Lib/ocaml/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/stl.i -------------------------------------------------------------------------------- /Lib/ocaml/swig.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/swig.ml -------------------------------------------------------------------------------- /Lib/ocaml/swig.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/swig.mli -------------------------------------------------------------------------------- /Lib/ocaml/swigmove.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/swigmove.i -------------------------------------------------------------------------------- /Lib/ocaml/swigp4.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/swigp4.ml -------------------------------------------------------------------------------- /Lib/ocaml/typecheck.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/typecheck.i -------------------------------------------------------------------------------- /Lib/ocaml/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ocaml/typemaps.i -------------------------------------------------------------------------------- /Lib/octave/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/argcargv.i -------------------------------------------------------------------------------- /Lib/octave/attribute.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/carrays.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/carrays.i -------------------------------------------------------------------------------- /Lib/octave/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/director.swg -------------------------------------------------------------------------------- /Lib/octave/exception.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/exception.i -------------------------------------------------------------------------------- /Lib/octave/extra-install.list: -------------------------------------------------------------------------------- 1 | # see top-level Makefile.in 2 | octheaders.hpp 3 | -------------------------------------------------------------------------------- /Lib/octave/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/implicit.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/implicit.i -------------------------------------------------------------------------------- /Lib/octave/octave.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/octave.swg -------------------------------------------------------------------------------- /Lib/octave/octcomplex.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/octcomplex.swg -------------------------------------------------------------------------------- /Lib/octave/octfragments.swg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Lib/octave/octheaders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/octheaders.hpp -------------------------------------------------------------------------------- /Lib/octave/octopers.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/octopers.swg -------------------------------------------------------------------------------- /Lib/octave/octrun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/octrun.swg -------------------------------------------------------------------------------- /Lib/octave/octruntime.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/octruntime.swg -------------------------------------------------------------------------------- /Lib/octave/octuserdir.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/octuserdir.swg -------------------------------------------------------------------------------- /Lib/octave/std_alloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/std_auto_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/std_auto_ptr.i -------------------------------------------------------------------------------- /Lib/octave/std_char_traits.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/std_common.i -------------------------------------------------------------------------------- /Lib/octave/std_complex.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/std_complex.i -------------------------------------------------------------------------------- /Lib/octave/std_deque.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/std_deque.i -------------------------------------------------------------------------------- /Lib/octave/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/std_list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/std_list.i -------------------------------------------------------------------------------- /Lib/octave/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/std_map.i -------------------------------------------------------------------------------- /Lib/octave/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/std_pair.i -------------------------------------------------------------------------------- /Lib/octave/std_shared_ptr.i: -------------------------------------------------------------------------------- 1 | #define SWIG_SHARED_PTR_NAMESPACE std 2 | %include 3 | -------------------------------------------------------------------------------- /Lib/octave/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/std_vector.i -------------------------------------------------------------------------------- /Lib/octave/std_wstring.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/stl.i -------------------------------------------------------------------------------- /Lib/octave/swigmove.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/octave/typemaps.i -------------------------------------------------------------------------------- /Lib/perl5/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/Makefile.in -------------------------------------------------------------------------------- /Lib/perl5/Makefile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/Makefile.pl -------------------------------------------------------------------------------- /Lib/perl5/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/argcargv.i -------------------------------------------------------------------------------- /Lib/perl5/attribute.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/perl5/carrays.i: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | -------------------------------------------------------------------------------- /Lib/perl5/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/perl5/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/perl5/cpointer.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/perl5/cstring.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/perl5/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/director.swg -------------------------------------------------------------------------------- /Lib/perl5/exception.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/exception.i -------------------------------------------------------------------------------- /Lib/perl5/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/perl5/noembed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/noembed.h -------------------------------------------------------------------------------- /Lib/perl5/perl5.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/perl5.swg -------------------------------------------------------------------------------- /Lib/perl5/perlerrors.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/perlerrors.swg -------------------------------------------------------------------------------- /Lib/perl5/perlhead.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/perlhead.swg -------------------------------------------------------------------------------- /Lib/perl5/perlinit.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/perlinit.swg -------------------------------------------------------------------------------- /Lib/perl5/perlkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/perlkw.swg -------------------------------------------------------------------------------- /Lib/perl5/perlmacros.swg: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | -------------------------------------------------------------------------------- /Lib/perl5/perlmain.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/perlmain.i -------------------------------------------------------------------------------- /Lib/perl5/perlopers.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/perlopers.swg -------------------------------------------------------------------------------- /Lib/perl5/perlrun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/perlrun.swg -------------------------------------------------------------------------------- /Lib/perl5/perlruntime.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/perlruntime.swg -------------------------------------------------------------------------------- /Lib/perl5/perlstrings.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/perlstrings.swg -------------------------------------------------------------------------------- /Lib/perl5/perluserdir.swg: -------------------------------------------------------------------------------- 1 | #define %perlcode %insert("perl") 2 | 3 | -------------------------------------------------------------------------------- /Lib/perl5/reference.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/reference.i -------------------------------------------------------------------------------- /Lib/perl5/std_auto_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/std_auto_ptr.i -------------------------------------------------------------------------------- /Lib/perl5/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/std_common.i -------------------------------------------------------------------------------- /Lib/perl5/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/perl5/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/perl5/std_list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/std_list.i -------------------------------------------------------------------------------- /Lib/perl5/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/std_map.i -------------------------------------------------------------------------------- /Lib/perl5/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/std_pair.i -------------------------------------------------------------------------------- /Lib/perl5/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/std_string.i -------------------------------------------------------------------------------- /Lib/perl5/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/std_vector.i -------------------------------------------------------------------------------- /Lib/perl5/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/stl.i -------------------------------------------------------------------------------- /Lib/perl5/swigmove.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/perl5/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/perl5/typemaps.i -------------------------------------------------------------------------------- /Lib/php/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/argcargv.i -------------------------------------------------------------------------------- /Lib/php/const.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/const.i -------------------------------------------------------------------------------- /Lib/php/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/director.swg -------------------------------------------------------------------------------- /Lib/php/factory.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/factory.i -------------------------------------------------------------------------------- /Lib/php/php.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/php.swg -------------------------------------------------------------------------------- /Lib/php/phpinit.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/phpinit.swg -------------------------------------------------------------------------------- /Lib/php/phpinterfaces.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/phpinterfaces.i -------------------------------------------------------------------------------- /Lib/php/phpkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/phpkw.swg -------------------------------------------------------------------------------- /Lib/php/phppointers.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/phppointers.i -------------------------------------------------------------------------------- /Lib/php/phprun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/phprun.swg -------------------------------------------------------------------------------- /Lib/php/std_auto_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/std_auto_ptr.i -------------------------------------------------------------------------------- /Lib/php/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/std_common.i -------------------------------------------------------------------------------- /Lib/php/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/php/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/std_map.i -------------------------------------------------------------------------------- /Lib/php/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/std_pair.i -------------------------------------------------------------------------------- /Lib/php/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/std_string.i -------------------------------------------------------------------------------- /Lib/php/std_string_view.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/std_string_view.i -------------------------------------------------------------------------------- /Lib/php/std_unique_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/std_unique_ptr.i -------------------------------------------------------------------------------- /Lib/php/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/std_vector.i -------------------------------------------------------------------------------- /Lib/php/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/stl.i -------------------------------------------------------------------------------- /Lib/php/swigmove.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/swigmove.i -------------------------------------------------------------------------------- /Lib/php/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/typemaps.i -------------------------------------------------------------------------------- /Lib/php/utils.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/php/utils.i -------------------------------------------------------------------------------- /Lib/python/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/Makefile.in -------------------------------------------------------------------------------- /Lib/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/README -------------------------------------------------------------------------------- /Lib/python/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/argcargv.i -------------------------------------------------------------------------------- /Lib/python/attribute.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/builtin.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/builtin.swg -------------------------------------------------------------------------------- /Lib/python/carrays.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/carrays.i -------------------------------------------------------------------------------- /Lib/python/ccomplex.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/ccomplex.i -------------------------------------------------------------------------------- /Lib/python/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/complex.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/complex.i -------------------------------------------------------------------------------- /Lib/python/cpointer.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/cstring.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/cwstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/cwstring.i -------------------------------------------------------------------------------- /Lib/python/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/director.swg -------------------------------------------------------------------------------- /Lib/python/embed.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/embed.i -------------------------------------------------------------------------------- /Lib/python/exception.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/exception.i -------------------------------------------------------------------------------- /Lib/python/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/file.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/file.i -------------------------------------------------------------------------------- /Lib/python/implicit.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/implicit.i -------------------------------------------------------------------------------- /Lib/python/pyabc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pyabc.i -------------------------------------------------------------------------------- /Lib/python/pyapi.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pyapi.swg -------------------------------------------------------------------------------- /Lib/python/pybackward.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pybackward.swg -------------------------------------------------------------------------------- /Lib/python/pybuffer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pybuffer.i -------------------------------------------------------------------------------- /Lib/python/pyclasses.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pyclasses.swg -------------------------------------------------------------------------------- /Lib/python/pycomplex.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pycomplex.swg -------------------------------------------------------------------------------- /Lib/python/pydocs.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pydocs.swg -------------------------------------------------------------------------------- /Lib/python/pyerrors.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pyerrors.swg -------------------------------------------------------------------------------- /Lib/python/pyhead.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pyhead.swg -------------------------------------------------------------------------------- /Lib/python/pyinit.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pyinit.swg -------------------------------------------------------------------------------- /Lib/python/pymacros.swg: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Lib/python/pyopers.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pyopers.swg -------------------------------------------------------------------------------- /Lib/python/pyrun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pyrun.swg -------------------------------------------------------------------------------- /Lib/python/pyruntime.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pyruntime.swg -------------------------------------------------------------------------------- /Lib/python/pystrings.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pystrings.swg -------------------------------------------------------------------------------- /Lib/python/python.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/python.swg -------------------------------------------------------------------------------- /Lib/python/pythonkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pythonkw.swg -------------------------------------------------------------------------------- /Lib/python/pythreads.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pythreads.swg -------------------------------------------------------------------------------- /Lib/python/pytuplehlp.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pytuplehlp.swg -------------------------------------------------------------------------------- /Lib/python/pytypemaps.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pytypemaps.swg -------------------------------------------------------------------------------- /Lib/python/pyuserdir.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pyuserdir.swg -------------------------------------------------------------------------------- /Lib/python/pywstrings.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/pywstrings.swg -------------------------------------------------------------------------------- /Lib/python/std_alloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/std_array.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_array.i -------------------------------------------------------------------------------- /Lib/python/std_auto_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_auto_ptr.i -------------------------------------------------------------------------------- /Lib/python/std_char_traits.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_common.i -------------------------------------------------------------------------------- /Lib/python/std_complex.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_complex.i -------------------------------------------------------------------------------- /Lib/python/std_deque.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_deque.i -------------------------------------------------------------------------------- /Lib/python/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/std_ios.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_ios.i -------------------------------------------------------------------------------- /Lib/python/std_iostream.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_iostream.i -------------------------------------------------------------------------------- /Lib/python/std_list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_list.i -------------------------------------------------------------------------------- /Lib/python/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_map.i -------------------------------------------------------------------------------- /Lib/python/std_multimap.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_multimap.i -------------------------------------------------------------------------------- /Lib/python/std_multiset.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_multiset.i -------------------------------------------------------------------------------- /Lib/python/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_pair.i -------------------------------------------------------------------------------- /Lib/python/std_set.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_set.i -------------------------------------------------------------------------------- /Lib/python/std_shared_ptr.i: -------------------------------------------------------------------------------- 1 | #define SWIG_SHARED_PTR_NAMESPACE std 2 | %include 3 | -------------------------------------------------------------------------------- /Lib/python/std_sstream.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/std_streambuf.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_vector.i -------------------------------------------------------------------------------- /Lib/python/std_vectora.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_vectora.i -------------------------------------------------------------------------------- /Lib/python/std_wios.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/std_wsstream.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/std_wstreambuf.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/std_wstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/std_wstring.i -------------------------------------------------------------------------------- /Lib/python/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/stl.i -------------------------------------------------------------------------------- /Lib/python/swigmove.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/typemaps.i -------------------------------------------------------------------------------- /Lib/python/wchar.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/python/wchar.i -------------------------------------------------------------------------------- /Lib/r/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/argcargv.i -------------------------------------------------------------------------------- /Lib/r/boost_shared_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/boost_shared_ptr.i -------------------------------------------------------------------------------- /Lib/r/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/r/exception.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/exception.i -------------------------------------------------------------------------------- /Lib/r/r.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/r.swg -------------------------------------------------------------------------------- /Lib/r/rcontainer.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/rcontainer.swg -------------------------------------------------------------------------------- /Lib/r/rfragments.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/rfragments.swg -------------------------------------------------------------------------------- /Lib/r/rkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/rkw.swg -------------------------------------------------------------------------------- /Lib/r/ropers.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/ropers.swg -------------------------------------------------------------------------------- /Lib/r/rrun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/rrun.swg -------------------------------------------------------------------------------- /Lib/r/rstdcommon.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/rstdcommon.swg -------------------------------------------------------------------------------- /Lib/r/rtype.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/rtype.swg -------------------------------------------------------------------------------- /Lib/r/srun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/srun.swg -------------------------------------------------------------------------------- /Lib/r/std_alloc.i: -------------------------------------------------------------------------------- 1 | %include -------------------------------------------------------------------------------- /Lib/r/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/std_common.i -------------------------------------------------------------------------------- /Lib/r/std_container.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/std_container.i -------------------------------------------------------------------------------- /Lib/r/std_deque.i: -------------------------------------------------------------------------------- 1 | %include -------------------------------------------------------------------------------- /Lib/r/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/r/std_list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/std_list.i -------------------------------------------------------------------------------- /Lib/r/std_map.i: -------------------------------------------------------------------------------- 1 | %fragment("StdMapTraits","header") 2 | %{ 3 | %} 4 | 5 | %include 6 | -------------------------------------------------------------------------------- /Lib/r/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/std_pair.i -------------------------------------------------------------------------------- /Lib/r/std_shared_ptr.i: -------------------------------------------------------------------------------- 1 | #define SWIG_SHARED_PTR_NAMESPACE std 2 | %include 3 | -------------------------------------------------------------------------------- /Lib/r/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/r/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/std_vector.i -------------------------------------------------------------------------------- /Lib/r/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/stl.i -------------------------------------------------------------------------------- /Lib/r/swigmove.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/r/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/r/typemaps.i -------------------------------------------------------------------------------- /Lib/ruby/Makefile.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/Makefile.swig -------------------------------------------------------------------------------- /Lib/ruby/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/argcargv.i -------------------------------------------------------------------------------- /Lib/ruby/attribute.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/carrays.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/carrays.i -------------------------------------------------------------------------------- /Lib/ruby/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/cpointer.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/cstring.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/director.swg -------------------------------------------------------------------------------- /Lib/ruby/embed.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/embed.i -------------------------------------------------------------------------------- /Lib/ruby/exception.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/exception.i -------------------------------------------------------------------------------- /Lib/ruby/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/extconf.rb -------------------------------------------------------------------------------- /Lib/ruby/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/file.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/file.i -------------------------------------------------------------------------------- /Lib/ruby/progargcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/progargcargv.i -------------------------------------------------------------------------------- /Lib/ruby/ruby.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/ruby.swg -------------------------------------------------------------------------------- /Lib/ruby/rubyapi.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubyapi.swg -------------------------------------------------------------------------------- /Lib/ruby/rubyautodoc.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubyautodoc.swg -------------------------------------------------------------------------------- /Lib/ruby/rubyclasses.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubyclasses.swg -------------------------------------------------------------------------------- /Lib/ruby/rubycomplex.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubycomplex.swg -------------------------------------------------------------------------------- /Lib/ruby/rubydef.swg: -------------------------------------------------------------------------------- 1 | /* empty file added for backward comp. */ 2 | -------------------------------------------------------------------------------- /Lib/ruby/rubyerrors.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubyerrors.swg -------------------------------------------------------------------------------- /Lib/ruby/rubyhead.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubyhead.swg -------------------------------------------------------------------------------- /Lib/ruby/rubyinit.swg: -------------------------------------------------------------------------------- 1 | %insert(initbeforefunc) "swiginit.swg" 2 | -------------------------------------------------------------------------------- /Lib/ruby/rubykw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubykw.swg -------------------------------------------------------------------------------- /Lib/ruby/rubymacros.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubymacros.swg -------------------------------------------------------------------------------- /Lib/ruby/rubyopers.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubyopers.swg -------------------------------------------------------------------------------- /Lib/ruby/rubyrun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubyrun.swg -------------------------------------------------------------------------------- /Lib/ruby/rubyruntime.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubyruntime.swg -------------------------------------------------------------------------------- /Lib/ruby/rubystrings.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubystrings.swg -------------------------------------------------------------------------------- /Lib/ruby/rubytracking.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubytracking.swg -------------------------------------------------------------------------------- /Lib/ruby/rubytypemaps.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubytypemaps.swg -------------------------------------------------------------------------------- /Lib/ruby/rubyuserdir.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubyuserdir.swg -------------------------------------------------------------------------------- /Lib/ruby/rubywstrings.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/rubywstrings.swg -------------------------------------------------------------------------------- /Lib/ruby/std_alloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/std_array.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_array.i -------------------------------------------------------------------------------- /Lib/ruby/std_auto_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_auto_ptr.i -------------------------------------------------------------------------------- /Lib/ruby/std_char_traits.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_common.i -------------------------------------------------------------------------------- /Lib/ruby/std_complex.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_complex.i -------------------------------------------------------------------------------- /Lib/ruby/std_container.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_container.i -------------------------------------------------------------------------------- /Lib/ruby/std_deque.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_deque.i -------------------------------------------------------------------------------- /Lib/ruby/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/std_functors.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_functors.i -------------------------------------------------------------------------------- /Lib/ruby/std_ios.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_ios.i -------------------------------------------------------------------------------- /Lib/ruby/std_list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_list.i -------------------------------------------------------------------------------- /Lib/ruby/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_map.i -------------------------------------------------------------------------------- /Lib/ruby/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_pair.i -------------------------------------------------------------------------------- /Lib/ruby/std_queue.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_queue.i -------------------------------------------------------------------------------- /Lib/ruby/std_set.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_set.i -------------------------------------------------------------------------------- /Lib/ruby/std_sstream.i: -------------------------------------------------------------------------------- 1 | 2 | %include 3 | -------------------------------------------------------------------------------- /Lib/ruby/std_stack.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_stack.i -------------------------------------------------------------------------------- /Lib/ruby/std_streambuf.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_string.i -------------------------------------------------------------------------------- /Lib/ruby/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_vector.i -------------------------------------------------------------------------------- /Lib/ruby/std_vectora.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_vectora.i -------------------------------------------------------------------------------- /Lib/ruby/std_wstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/std_wstring.i -------------------------------------------------------------------------------- /Lib/ruby/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/stl.i -------------------------------------------------------------------------------- /Lib/ruby/swigmove.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/timeval.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/timeval.i -------------------------------------------------------------------------------- /Lib/ruby/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/ruby/typemaps.i -------------------------------------------------------------------------------- /Lib/runtime.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/runtime.swg -------------------------------------------------------------------------------- /Lib/scilab/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/argcargv.i -------------------------------------------------------------------------------- /Lib/scilab/carrays.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/carrays.i -------------------------------------------------------------------------------- /Lib/scilab/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/scilab/cpointer.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/scilab/exception.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/exception.i -------------------------------------------------------------------------------- /Lib/scilab/matrix.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/matrix.i -------------------------------------------------------------------------------- /Lib/scilab/scibool.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/scibool.swg -------------------------------------------------------------------------------- /Lib/scilab/scichar.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/scichar.swg -------------------------------------------------------------------------------- /Lib/scilab/scienum.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/scienum.swg -------------------------------------------------------------------------------- /Lib/scilab/sciint.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/sciint.swg -------------------------------------------------------------------------------- /Lib/scilab/scilab.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/scilab.swg -------------------------------------------------------------------------------- /Lib/scilab/scilist.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/scilist.swg -------------------------------------------------------------------------------- /Lib/scilab/scilong.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/scilong.swg -------------------------------------------------------------------------------- /Lib/scilab/scirun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/scirun.swg -------------------------------------------------------------------------------- /Lib/scilab/std_alloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | -------------------------------------------------------------------------------- /Lib/scilab/std_char_traits.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/scilab/std_deque.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/std_deque.i -------------------------------------------------------------------------------- /Lib/scilab/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/scilab/std_list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/std_list.i -------------------------------------------------------------------------------- /Lib/scilab/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/std_map.i -------------------------------------------------------------------------------- /Lib/scilab/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/std_pair.i -------------------------------------------------------------------------------- /Lib/scilab/std_set.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/std_set.i -------------------------------------------------------------------------------- /Lib/scilab/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/stl.i -------------------------------------------------------------------------------- /Lib/scilab/swigmove.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/scilab/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/scilab/typemaps.i -------------------------------------------------------------------------------- /Lib/shared_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/shared_ptr.i -------------------------------------------------------------------------------- /Lib/std/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/README -------------------------------------------------------------------------------- /Lib/std/_std_deque.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/_std_deque.i -------------------------------------------------------------------------------- /Lib/std/std_alloc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_alloc.i -------------------------------------------------------------------------------- /Lib/std/std_array.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_array.i -------------------------------------------------------------------------------- /Lib/std/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_common.i -------------------------------------------------------------------------------- /Lib/std/std_deque.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_deque.i -------------------------------------------------------------------------------- /Lib/std/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_except.i -------------------------------------------------------------------------------- /Lib/std/std_ios.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_ios.i -------------------------------------------------------------------------------- /Lib/std/std_iostream.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_iostream.i -------------------------------------------------------------------------------- /Lib/std/std_list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_list.i -------------------------------------------------------------------------------- /Lib/std/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_map.i -------------------------------------------------------------------------------- /Lib/std/std_multimap.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_multimap.i -------------------------------------------------------------------------------- /Lib/std/std_multiset.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_multiset.i -------------------------------------------------------------------------------- /Lib/std/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_pair.i -------------------------------------------------------------------------------- /Lib/std/std_queue.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_queue.i -------------------------------------------------------------------------------- /Lib/std/std_set.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_set.i -------------------------------------------------------------------------------- /Lib/std/std_sstream.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_sstream.i -------------------------------------------------------------------------------- /Lib/std/std_stack.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_stack.i -------------------------------------------------------------------------------- /Lib/std/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_string.i -------------------------------------------------------------------------------- /Lib/std/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_vector.i -------------------------------------------------------------------------------- /Lib/std/std_vectora.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_vectora.i -------------------------------------------------------------------------------- /Lib/std/std_wios.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_wios.i -------------------------------------------------------------------------------- /Lib/std/std_wsstream.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_wsstream.i -------------------------------------------------------------------------------- /Lib/std/std_wstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std/std_wstring.i -------------------------------------------------------------------------------- /Lib/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/std_except.i -------------------------------------------------------------------------------- /Lib/stdint.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/stdint.i -------------------------------------------------------------------------------- /Lib/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/stl.i -------------------------------------------------------------------------------- /Lib/swig.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/swig.swg -------------------------------------------------------------------------------- /Lib/swigarch.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/swigarch.i -------------------------------------------------------------------------------- /Lib/swigerrors.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/swigerrors.swg -------------------------------------------------------------------------------- /Lib/swigfragments.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/swigfragments.swg -------------------------------------------------------------------------------- /Lib/swiginit.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/swiginit.swg -------------------------------------------------------------------------------- /Lib/swiglabels.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/swiglabels.swg -------------------------------------------------------------------------------- /Lib/swigrun.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/swigrun.i -------------------------------------------------------------------------------- /Lib/swigrun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/swigrun.swg -------------------------------------------------------------------------------- /Lib/swigwarnings.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/swigwarnings.swg -------------------------------------------------------------------------------- /Lib/tcl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/Makefile.in -------------------------------------------------------------------------------- /Lib/tcl/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/argcargv.i -------------------------------------------------------------------------------- /Lib/tcl/attribute.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/tcl/carrays.i: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Lib/tcl/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/tcl/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/tcl/cpointer.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/tcl/cstring.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/tcl/cwstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/cwstring.i -------------------------------------------------------------------------------- /Lib/tcl/exception.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/exception.i -------------------------------------------------------------------------------- /Lib/tcl/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/tcl/std_auto_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/std_auto_ptr.i -------------------------------------------------------------------------------- /Lib/tcl/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/std_common.i -------------------------------------------------------------------------------- /Lib/tcl/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/tcl/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/tcl/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/std_map.i -------------------------------------------------------------------------------- /Lib/tcl/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/std_pair.i -------------------------------------------------------------------------------- /Lib/tcl/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | -------------------------------------------------------------------------------- /Lib/tcl/std_string_view.i: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | -------------------------------------------------------------------------------- /Lib/tcl/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/std_vector.i -------------------------------------------------------------------------------- /Lib/tcl/std_wstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/std_wstring.i -------------------------------------------------------------------------------- /Lib/tcl/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/stl.i -------------------------------------------------------------------------------- /Lib/tcl/swigmove.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/tcl/tcl8.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/tcl8.swg -------------------------------------------------------------------------------- /Lib/tcl/tclapi.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/tclapi.swg -------------------------------------------------------------------------------- /Lib/tcl/tclerrors.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/tclerrors.swg -------------------------------------------------------------------------------- /Lib/tcl/tclinit.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/tclinit.swg -------------------------------------------------------------------------------- /Lib/tcl/tclinterp.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/tclinterp.i -------------------------------------------------------------------------------- /Lib/tcl/tclkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/tclkw.swg -------------------------------------------------------------------------------- /Lib/tcl/tclmacros.swg: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Lib/tcl/tclopers.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/tclopers.swg -------------------------------------------------------------------------------- /Lib/tcl/tclresult.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/tclresult.i -------------------------------------------------------------------------------- /Lib/tcl/tclrun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/tclrun.swg -------------------------------------------------------------------------------- /Lib/tcl/tclruntime.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/tclruntime.swg -------------------------------------------------------------------------------- /Lib/tcl/tclsh.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/tclsh.i -------------------------------------------------------------------------------- /Lib/tcl/tclstrings.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/tclstrings.swg -------------------------------------------------------------------------------- /Lib/tcl/tcluserdir.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/tcluserdir.swg -------------------------------------------------------------------------------- /Lib/tcl/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/typemaps.i -------------------------------------------------------------------------------- /Lib/tcl/wish.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/tcl/wish.i -------------------------------------------------------------------------------- /Lib/typemaps/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/typemaps/README -------------------------------------------------------------------------------- /Lib/typemaps/cdata.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/typemaps/cdata.swg -------------------------------------------------------------------------------- /Lib/typemaps/void.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/typemaps/void.swg -------------------------------------------------------------------------------- /Lib/wchar.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/wchar.i -------------------------------------------------------------------------------- /Lib/windows.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/windows.i -------------------------------------------------------------------------------- /Lib/xml/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Lib/xml/typemaps.i -------------------------------------------------------------------------------- /Lib/xml/xml.swg: -------------------------------------------------------------------------------- 1 | /* nothing special */ -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/README -------------------------------------------------------------------------------- /RELEASENOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/RELEASENOTES -------------------------------------------------------------------------------- /Source/CParse/cparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/CParse/cparse.h -------------------------------------------------------------------------------- /Source/CParse/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/CParse/parser.y -------------------------------------------------------------------------------- /Source/CParse/templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/CParse/templ.c -------------------------------------------------------------------------------- /Source/CParse/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/CParse/util.c -------------------------------------------------------------------------------- /Source/DOH/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/DOH/README -------------------------------------------------------------------------------- /Source/DOH/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/DOH/base.c -------------------------------------------------------------------------------- /Source/DOH/doh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/DOH/doh.h -------------------------------------------------------------------------------- /Source/DOH/dohint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/DOH/dohint.h -------------------------------------------------------------------------------- /Source/DOH/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/DOH/file.c -------------------------------------------------------------------------------- /Source/DOH/fio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/DOH/fio.c -------------------------------------------------------------------------------- /Source/DOH/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/DOH/hash.c -------------------------------------------------------------------------------- /Source/DOH/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/DOH/list.c -------------------------------------------------------------------------------- /Source/DOH/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/DOH/memory.c -------------------------------------------------------------------------------- /Source/DOH/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/DOH/string.c -------------------------------------------------------------------------------- /Source/DOH/void.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/DOH/void.c -------------------------------------------------------------------------------- /Source/Doxygen/pydoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Doxygen/pydoc.h -------------------------------------------------------------------------------- /Source/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Makefile.am -------------------------------------------------------------------------------- /Source/Modules/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Modules/README -------------------------------------------------------------------------------- /Source/Modules/d.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Modules/d.cxx -------------------------------------------------------------------------------- /Source/Modules/go.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Modules/go.cxx -------------------------------------------------------------------------------- /Source/Modules/lua.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Modules/lua.cxx -------------------------------------------------------------------------------- /Source/Modules/php.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Modules/php.cxx -------------------------------------------------------------------------------- /Source/Modules/r.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Modules/r.cxx -------------------------------------------------------------------------------- /Source/Modules/xml.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Modules/xml.cxx -------------------------------------------------------------------------------- /Source/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/README -------------------------------------------------------------------------------- /Source/Swig/cwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/cwrap.c -------------------------------------------------------------------------------- /Source/Swig/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/error.c -------------------------------------------------------------------------------- /Source/Swig/extend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/extend.c -------------------------------------------------------------------------------- /Source/Swig/fragment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/fragment.c -------------------------------------------------------------------------------- /Source/Swig/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/getopt.c -------------------------------------------------------------------------------- /Source/Swig/include.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/include.c -------------------------------------------------------------------------------- /Source/Swig/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/misc.c -------------------------------------------------------------------------------- /Source/Swig/naming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/naming.c -------------------------------------------------------------------------------- /Source/Swig/parms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/parms.c -------------------------------------------------------------------------------- /Source/Swig/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/scanner.c -------------------------------------------------------------------------------- /Source/Swig/stype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/stype.c -------------------------------------------------------------------------------- /Source/Swig/swig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/swig.h -------------------------------------------------------------------------------- /Source/Swig/swigfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/swigfile.h -------------------------------------------------------------------------------- /Source/Swig/swigopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/swigopt.h -------------------------------------------------------------------------------- /Source/Swig/swigparm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/swigparm.h -------------------------------------------------------------------------------- /Source/Swig/swigscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/swigscan.h -------------------------------------------------------------------------------- /Source/Swig/swigtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/swigtree.h -------------------------------------------------------------------------------- /Source/Swig/swigwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/swigwrap.h -------------------------------------------------------------------------------- /Source/Swig/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/symbol.c -------------------------------------------------------------------------------- /Source/Swig/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/tree.c -------------------------------------------------------------------------------- /Source/Swig/typemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/typemap.c -------------------------------------------------------------------------------- /Source/Swig/typeobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/typeobj.c -------------------------------------------------------------------------------- /Source/Swig/typesys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/typesys.c -------------------------------------------------------------------------------- /Source/Swig/wrapfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Source/Swig/wrapfunc.c -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/TODO -------------------------------------------------------------------------------- /Tools/capitalize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Tools/capitalize -------------------------------------------------------------------------------- /Tools/convertpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Tools/convertpath -------------------------------------------------------------------------------- /Tools/mkdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Tools/mkdist.py -------------------------------------------------------------------------------- /Tools/mkrelease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Tools/mkrelease.py -------------------------------------------------------------------------------- /Tools/mkwindows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Tools/mkwindows.sh -------------------------------------------------------------------------------- /Tools/obs-buildlogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Tools/obs-buildlogs.py -------------------------------------------------------------------------------- /Tools/obs-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Tools/obs-update -------------------------------------------------------------------------------- /Tools/pcre-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Tools/pcre-build.sh -------------------------------------------------------------------------------- /Tools/pyname_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Tools/pyname_patch.py -------------------------------------------------------------------------------- /Tools/setup.py.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Tools/setup.py.tmpl -------------------------------------------------------------------------------- /Tools/swig.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Tools/swig.gdb -------------------------------------------------------------------------------- /Tools/testflags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Tools/testflags.py -------------------------------------------------------------------------------- /Tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Tools/utils.py -------------------------------------------------------------------------------- /Tools/vcfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Tools/vcfilter -------------------------------------------------------------------------------- /Win/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/Win/README.txt -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/appveyor.yml -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/configure.ac -------------------------------------------------------------------------------- /preinst-swig.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swig-fortran/swig/HEAD/preinst-swig.in --------------------------------------------------------------------------------