├── .gitattributes ├── .gitignore ├── .travis.yml ├── ANNOUNCE ├── CCache ├── COPYING ├── Makefile ├── Makefile.in ├── README ├── README.swig ├── args.c ├── ccache.c ├── ccache.h ├── ccache.yo ├── ccache_swig_config.h ├── ccache_swig_config.h.in ├── cleanup.c ├── config.h ├── config.h.in ├── config.status ├── configure ├── 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.10764 │ ├── Bar10.java │ ├── ccache dir │ │ ├── CACHEDIR.TAG │ │ └── temp │ │ │ ├── test1.tmp.unknown.12764.i │ │ │ └── tmp.cpp_stderr.unknown.12764 │ ├── swigtest1.java │ ├── swigtest1JNI.java │ ├── test1.c │ ├── test1.ccc │ ├── test10.c │ ├── test11.c │ ├── test12.c │ ├── test13.c │ ├── test14.c │ ├── test15.c │ ├── test16.c │ ├── test17.c │ ├── test18.c │ ├── test19.c │ ├── test2.c │ ├── test20.c │ ├── test21.c │ ├── test22.c │ ├── test23.c │ ├── test24.c │ ├── test25.c │ ├── test26.c │ ├── test27.c │ ├── test28.c │ ├── test29.c │ ├── test3.c │ ├── test30.c │ ├── test31.c │ ├── test4.c │ ├── test5.c │ ├── test6.c │ ├── test7.c │ ├── test8.c │ └── test9.c ├── test.22948 │ ├── Bar10.java │ ├── ccache dir │ │ ├── CACHEDIR.TAG │ │ └── temp │ │ │ ├── test1.tmp.unknown.12604.i │ │ │ └── tmp.cpp_stderr.unknown.12604 │ ├── swigtest1.java │ ├── swigtest1JNI.java │ ├── test1.c │ ├── test1.ccc │ ├── test10.c │ ├── test11.c │ ├── test12.c │ ├── test13.c │ ├── test14.c │ ├── test15.c │ ├── test16.c │ ├── test17.c │ ├── test18.c │ ├── test19.c │ ├── test2.c │ ├── test20.c │ ├── test21.c │ ├── test22.c │ ├── test23.c │ ├── test24.c │ ├── test25.c │ ├── test26.c │ ├── test27.c │ ├── test28.c │ ├── test29.c │ ├── test3.c │ ├── test30.c │ ├── test31.c │ ├── test4.c │ ├── test5.c │ ├── test6.c │ ├── test7.c │ ├── test8.c │ └── test9.c ├── test.6352 │ ├── Bar10.java │ ├── ccache dir │ │ ├── CACHEDIR.TAG │ │ └── temp │ │ │ ├── test1.tmp.unknown.10004.i │ │ │ └── tmp.cpp_stderr.unknown.10004 │ ├── swigtest1.java │ ├── swigtest1JNI.java │ ├── test1.c │ ├── test1.ccc │ ├── test10.c │ ├── test11.c │ ├── test12.c │ ├── test13.c │ ├── test14.c │ ├── test15.c │ ├── test16.c │ ├── test17.c │ ├── test18.c │ ├── test19.c │ ├── test2.c │ ├── test20.c │ ├── test21.c │ ├── test22.c │ ├── test23.c │ ├── test24.c │ ├── test25.c │ ├── test26.c │ ├── test27.c │ ├── test28.c │ ├── test29.c │ ├── test3.c │ ├── test30.c │ ├── test31.c │ ├── test4.c │ ├── test5.c │ ├── test6.c │ ├── test7.c │ ├── test8.c │ └── test9.c ├── test.sh ├── unify.c ├── util.c └── web │ └── index.html ├── CHANGES ├── CHANGES.current ├── COPYRIGHT ├── Doc ├── Devel │ ├── cmdopt.html │ ├── cpp11.html │ ├── engineering.html │ ├── file.html │ ├── index.html │ ├── internals.html │ ├── migrate.txt │ ├── parm.html │ ├── runtime.txt │ ├── scanner.html │ ├── tree.html │ └── wrapobj.html ├── Manual │ ├── Allegrocl.html │ ├── Android.html │ ├── Arguments.html │ ├── CCache.html │ ├── CPlusPlus11.html │ ├── CSharp.html │ ├── Chicken.html │ ├── Contents.html │ ├── Contract.html │ ├── Customization.html │ ├── D.html.exclude │ ├── Delphi.html │ ├── Extending.html │ ├── Go.html │ ├── Guile.html │ ├── Introduction.html │ ├── Java.html │ ├── Javascript.html │ ├── Library.html │ ├── Lisp.html │ ├── Lua.html │ ├── Makefile │ ├── Modula3.html │ ├── Modules.html │ ├── Mzscheme.html │ ├── Ocaml.html │ ├── Octave.html │ ├── Perl5.html │ ├── Php.html │ ├── Pike.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 │ ├── index.html │ ├── linkchecker.config │ ├── makechap.py │ ├── maketoc.py │ ├── style.css │ └── swig16.png └── README ├── Examples ├── Makefile ├── 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 ├── chicken │ ├── README │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── runme-lowlevel.scm │ │ └── runme-tinyclos.scm │ ├── constants │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.scm │ ├── egg │ │ ├── Makefile │ │ ├── README │ │ ├── mod1.i │ │ ├── mod2.i │ │ ├── multi.setup │ │ ├── multi_init.scm │ │ ├── single.i │ │ ├── single.setup │ │ └── test.scm │ ├── multimap │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.scm │ ├── overload │ │ ├── Makefile │ │ ├── README │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.scm │ └── simple │ │ ├── Makefile │ │ ├── README │ │ ├── example.c │ │ ├── example.i │ │ └── runme.scm ├── contract │ ├── simple_c │ │ ├── example.c │ │ ├── example.i │ │ ├── runme1.py │ │ └── runme2.py │ └── simple_cxx │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── runme1.py │ │ ├── runme2.py │ │ └── runme3.py ├── 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 │ │ ├── d1 │ │ │ └── runme.d │ │ ├── d2 │ │ │ └── runme.d │ │ ├── example.cxx │ │ ├── example.h │ │ └── example.i │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── d1 │ │ │ └── runme.d │ │ ├── d2 │ │ │ └── runme.d │ │ ├── example.cxx │ │ ├── example.h │ │ └── example.i │ ├── constants │ │ ├── Makefile │ │ ├── d1 │ │ │ └── runme.d │ │ ├── d2 │ │ │ └── runme.d │ │ └── example.i │ ├── enum │ │ ├── Makefile │ │ ├── d1 │ │ │ └── runme.d │ │ ├── d2 │ │ │ └── runme.d │ │ ├── example.cxx │ │ ├── example.h │ │ └── example.i │ ├── example.mk │ ├── example.mk.in │ ├── extend │ │ ├── Makefile │ │ ├── d1 │ │ │ └── runme.d │ │ ├── d2 │ │ │ └── runme.d │ │ ├── example.cxx │ │ ├── example.h │ │ └── example.i │ ├── funcptr │ │ ├── Makefile │ │ ├── d1 │ │ │ └── runme.d │ │ ├── d2 │ │ │ └── runme.d │ │ ├── example.c │ │ ├── example.h │ │ └── example.i │ ├── simple │ │ ├── Makefile │ │ ├── d1 │ │ │ └── runme.d │ │ ├── d2 │ │ │ └── runme.d │ │ ├── example.c │ │ └── example.i │ └── variables │ │ ├── Makefile │ │ ├── d1 │ │ └── runme.d │ │ ├── d2 │ │ └── runme.d │ │ ├── example.c │ │ ├── example.h │ │ └── example.i ├── delphi.rar ├── delphi │ ├── callback │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example.pas │ │ └── example_wrap.cxx │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example.pas │ │ └── example_wrap.cxx │ ├── enum │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example.pas │ │ ├── example_wrap.cxx │ │ └── tree.xml │ ├── extend │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example.pas │ │ └── example_wrap.cxx │ ├── funcptr │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── example.pas │ │ ├── example_wrap.c │ │ └── runme.dpr │ ├── reference │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example.pas │ │ └── example_wrap.cxx │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ ├── example.pas │ │ └── example_wrap.c │ ├── template │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ ├── example.pas │ │ └── example_wrap.cxx │ └── variables │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ ├── example.pas │ │ └── example_wrap.c ├── 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 │ ├── 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 │ ├── 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 │ ├── 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.cxx │ │ ├── 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.cxx │ │ ├── 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.cxx │ │ ├── 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 ├── modula3 │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── swig.tmpl │ ├── enum │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ ├── example_const.c │ │ └── example_const.i │ ├── exception │ │ ├── Makefile │ │ ├── example.h │ │ └── example.i │ ├── reference │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ └── example.i │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ └── example.i │ └── typemap │ │ ├── Makefile │ │ └── example.i ├── mzscheme │ ├── check.list │ ├── multimap │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.scm │ ├── simple │ │ ├── Makefile │ │ ├── README │ │ ├── example.c │ │ ├── example.i │ │ └── runme.scm │ └── std_vector │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.scm ├── ocaml │ ├── argout_ref │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── example_prog.ml │ ├── check.list │ ├── contract │ │ ├── Makefile │ │ ├── example.i │ │ └── example_prog.ml │ ├── scoped_enum │ │ ├── Makefile │ │ ├── README │ │ ├── example.i │ │ ├── example_prog.ml │ │ └── foo.h │ ├── shapes │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.h │ │ ├── example.i │ │ └── example_prog.ml │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ ├── example_prog.ml │ │ └── index.html │ ├── 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_prog.ml │ │ └── foolib.i │ └── 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 │ │ ├── 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 │ ├── java │ │ ├── Example.java │ │ ├── Makefile │ │ ├── example.i │ │ └── 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 ├── php5 │ ├── 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 ├── pike │ ├── check.list │ ├── class │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.pike │ ├── constants │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.pike │ ├── enum │ │ ├── Makefile │ │ ├── README │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.pike │ ├── overload │ │ ├── Makefile │ │ ├── example.cxx │ │ ├── example.h │ │ ├── example.i │ │ └── runme.pike │ ├── simple │ │ ├── Makefile │ │ ├── example.c │ │ ├── example.i │ │ └── runme.pike │ └── template │ │ ├── Makefile │ │ ├── example.h │ │ ├── example.i │ │ └── runme.pike ├── 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 │ ├── 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 │ │ ├── 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 │ ├── java │ │ ├── Example.java │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.py │ ├── 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 │ ├── exception_class │ │ ├── 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 │ ├── java │ │ ├── Example.java │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.rb │ ├── 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 ├── s-exp │ └── uffi.lisp ├── 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 │ ├── java │ │ ├── Example.java │ │ ├── Makefile │ │ ├── example.i │ │ └── runme.tcl │ ├── 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_inherit.i │ ├── abstract_inherit_ok.i │ ├── abstract_signature.i │ ├── abstract_typedef.i │ ├── abstract_typedef2.i │ ├── abstract_virtual.i │ ├── access_change.i │ ├── add_link.i │ ├── aggregate.i │ ├── allegrocl │ │ ├── Makefile │ │ └── Makefile.in │ ├── 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 │ ├── cffi │ │ ├── Makefile │ │ └── Makefile.in │ ├── char_binary.i │ ├── char_constant.i │ ├── char_strings.i │ ├── chartest.i │ ├── chicken │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── casts_runme.ss │ │ ├── char_constant_runme.ss │ │ ├── chicken_ext_test_external.cxx │ │ ├── chicken_ext_test_runme.ss │ │ ├── class_ignore_runme.ss │ │ ├── clientdata_prop_runme_proxy.ss │ │ ├── constover_runme.ss │ │ ├── contract_runme.ss │ │ ├── cpp_basic_runme_proxy.ss │ │ ├── cpp_enum_runme.ss │ │ ├── cpp_namespace_runme.ss │ │ ├── dynamic_cast_runme.ss │ │ ├── global_vars_runme.ss │ │ ├── global_vars_runme_proxy.ss │ │ ├── import_nomodule_runme.ss │ │ ├── imports_runme.ss │ │ ├── inherit_missing_runme.ss │ │ ├── li_std_string_runme.ss │ │ ├── li_std_string_runme_proxy.ss │ │ ├── li_typemaps_runme.ss │ │ ├── li_typemaps_runme_proxy.ss │ │ ├── list_vector_runme.ss │ │ ├── member_pointer_runme.ss │ │ ├── multiple_inheritance_runme_proxy.ss │ │ ├── multivalue_runme.ss │ │ ├── name_runme.ss │ │ ├── newobject1_runme_proxy.ss │ │ ├── newobject2_runme.ss │ │ ├── newobject2_runme_proxy.ss │ │ ├── overload_complicated_runme.ss │ │ ├── overload_copy_runme.ss │ │ ├── overload_copy_runme_proxy.ss │ │ ├── overload_extend_c_runme.ss │ │ ├── overload_extend_runme.ss │ │ ├── overload_extend_runme_proxy.ss │ │ ├── overload_simple_runme.ss │ │ ├── overload_simple_runme_proxy.ss │ │ ├── overload_subtype_runme.ss │ │ ├── overload_subtype_runme_proxy.ss │ │ ├── pointer_in_out_runme.ss │ │ ├── reference_global_vars_runme.ss │ │ ├── testsuite.ss │ │ ├── throw_exception_runme.ss │ │ ├── typedef_inherit_runme.ss │ │ ├── typename_runme.ss │ │ ├── unions_runme.ss │ │ └── unions_runme_proxy.ss │ ├── chicken_ext_test.i │ ├── class_forward.i │ ├── class_ignore.i │ ├── class_scope_weird.i │ ├── clientdata_prop.list │ ├── clientdata_prop_a.h │ ├── clientdata_prop_a.i │ ├── clientdata_prop_b.h │ ├── clientdata_prop_b.i │ ├── clisp │ │ ├── Makefile │ │ └── Makefile.in │ ├── common.mk │ ├── compactdefaultargs.i │ ├── complextest.i │ ├── const_const.i │ ├── const_const_2.i │ ├── constant_directive.i │ ├── constant_expr.i │ ├── constant_pointers.i │ ├── constants.i │ ├── constover.i │ ├── constructor_copy.i │ ├── constructor_exception.i │ ├── constructor_explicit.i │ ├── constructor_ignore.i │ ├── constructor_rename.i │ ├── constructor_value.i │ ├── contract.i │ ├── conversion.i │ ├── conversion_namespace.i │ ├── conversion_ns_template.i │ ├── conversion_operators.i │ ├── cplusplus_throw.i │ ├── cpp11_alignment.i │ ├── cpp11_alternate_function_syntax.i │ ├── cpp11_constexpr.i │ ├── cpp11_decltype.i │ ├── cpp11_default_delete.i │ ├── cpp11_delegating_constructors.i │ ├── cpp11_director_enums.i │ ├── cpp11_explicit_conversion_operators.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_li_std_array.i │ ├── cpp11_noexcept.i │ ├── cpp11_null_pointer_constant.i │ ├── cpp11_raw_string_literals.i │ ├── cpp11_reference_wrapper.i │ ├── cpp11_result_of.i │ ├── cpp11_rvalue_reference.i │ ├── cpp11_rvalue_reference2.i │ ├── cpp11_rvalue_reference3.i │ ├── cpp11_sizeof_object.i │ ├── cpp11_static_assert.i │ ├── cpp11_strongly_typed_enumerations.i │ ├── cpp11_strongly_typed_enumerations_simple.i │ ├── cpp11_template_double_brackets.i │ ├── cpp11_template_explicit.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_variadic_templates.i │ ├── cpp_basic.i │ ├── cpp_broken.i │ ├── cpp_enum.i │ ├── cpp_namespace.i │ ├── cpp_nodefault.i │ ├── cpp_static.i │ ├── cpp_typedef.i │ ├── csharp │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── aggregate_runme.cs │ │ ├── allprotected_runme.cs │ │ ├── apply_strings_runme.cs │ │ ├── bools_runme.cs │ │ ├── catches_runme.cs │ │ ├── char_strings_runme.cs │ │ ├── constover_runme.cs │ │ ├── cpp11_li_std_array_runme.cs │ │ ├── cpp11_strongly_typed_enumerations_runme.cs │ │ ├── csharp_attributes_runme.cs │ │ ├── csharp_exceptions_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_ignore_runme.cs │ │ ├── director_nspace_runme.cs │ │ ├── director_pass_by_value_runme.cs │ │ ├── director_primitives_runme.cs │ │ ├── director_protected_runme.cs │ │ ├── director_smartptr_runme.cs │ │ ├── director_string_runme.cs │ │ ├── director_void_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_runme.cs │ │ ├── li_std_auto_ptr_runme.cs │ │ ├── li_std_combinations_runme.cs │ │ ├── li_std_except_runme.cs │ │ ├── li_std_map_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_shared_ptr_runme.cs │ │ ├── nested_class_runme.cs │ │ ├── nested_directors_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 │ │ ├── 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_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_exceptions.i │ ├── csharp_features.i │ ├── csharp_lib_arrays.i │ ├── csharp_namespace_system_collision.i │ ├── csharp_prepost.i │ ├── csharp_swig2_compatibility.i │ ├── csharp_typemaps.i │ ├── curiously_recurring_template_pattern.i │ ├── d │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── aggregate_runme.1.d │ │ ├── aggregate_runme.2.d │ │ ├── allprotected_runme.1.d │ │ ├── allprotected_runme.2.d │ │ ├── apply_strings_runme.1.d │ │ ├── apply_strings_runme.2.d │ │ ├── bools_runme.1.d │ │ ├── bools_runme.2.d │ │ ├── catches_runme.1.d │ │ ├── catches_runme.2.d │ │ ├── char_strings_runme.1.d │ │ ├── char_strings_runme.2.d │ │ ├── constover_runme.1.d │ │ ├── constover_runme.2.d │ │ ├── d_nativepointers_runme.1.d │ │ ├── d_nativepointers_runme.2.d │ │ ├── default_args_runme.1.d │ │ ├── default_args_runme.2.d │ │ ├── default_constructor_runme.1.d │ │ ├── default_constructor_runme.2.d │ │ ├── director_alternating_runme.1.d │ │ ├── director_alternating_runme.2.d │ │ ├── director_basic_runme.1.d │ │ ├── director_basic_runme.2.d │ │ ├── director_classes_runme.1.d │ │ ├── director_classes_runme.2.d │ │ ├── director_classic_runme.1.d │ │ ├── director_classic_runme.2.d │ │ ├── director_ignore_runme.1.d │ │ ├── director_ignore_runme.2.d │ │ ├── director_primitives_runme.1.d │ │ ├── director_primitives_runme.2.d │ │ ├── director_protected_runme.1.d │ │ ├── director_protected_runme.2.d │ │ ├── director_string_runme.1.d │ │ ├── director_string_runme.2.d │ │ ├── enum_thorough_runme.1.d │ │ ├── enum_thorough_runme.2.d │ │ ├── inherit_target_language_runme.1.d │ │ ├── inherit_target_language_runme.2.d │ │ ├── li_attribute_runme.1.d │ │ ├── li_attribute_runme.2.d │ │ ├── li_boost_shared_ptr_bits_runme.1.d │ │ ├── li_boost_shared_ptr_bits_runme.2.d │ │ ├── li_boost_shared_ptr_runme.1.d │ │ ├── li_boost_shared_ptr_runme.2.d │ │ ├── li_std_except_runme.1.d │ │ ├── li_std_except_runme.2.d │ │ ├── li_std_string_runme.1.d │ │ ├── li_std_string_runme.2.d │ │ ├── li_std_vector_runme.1.d │ │ ├── li_std_vector_runme.2.d │ │ ├── li_typemaps_runme.1.d │ │ ├── li_typemaps_runme.2.d │ │ ├── long_long_runme.1.d │ │ ├── long_long_runme.2.d │ │ ├── member_pointer_runme.1.d │ │ ├── member_pointer_runme.2.d │ │ ├── nspace_extend_runme.1.d │ │ ├── nspace_extend_runme.2.d │ │ ├── nspace_runme.1.d │ │ ├── nspace_runme.2.d │ │ ├── operator_overload_runme.1.d │ │ ├── operator_overload_runme.2.d │ │ ├── overload_complicated_runme.1.d │ │ ├── overload_complicated_runme.2.d │ │ ├── overload_template_runme.1.d │ │ ├── overload_template_runme.2.d │ │ ├── pointer_reference_runme.1.d │ │ ├── pointer_reference_runme.2.d │ │ ├── preproc_constants_c_runme.1.d │ │ ├── preproc_constants_c_runme.2.d │ │ ├── preproc_constants_runme.1.d │ │ ├── preproc_constants_runme.2.d │ │ ├── sizet_runme.1.d │ │ ├── sizet_runme.2.d │ │ ├── sneaky1_runme.1.d │ │ ├── sneaky1_runme.2.d │ │ ├── special_variable_macros_runme.1.d │ │ ├── special_variable_macros_runme.2.d │ │ ├── threads_runme.1.d │ │ ├── threads_runme.2.d │ │ ├── throw_exception_runme.1.d │ │ ├── throw_exception_runme.2.d │ │ ├── typemap_namespace_runme.1.d │ │ ├── typemap_namespace_runme.2.d │ │ ├── typemap_out_optimal_runme.1.d │ │ ├── typemap_out_optimal_runme.2.d │ │ ├── varargs_runme.1.d │ │ ├── varargs_runme.2.d │ │ ├── virtual_poly_runme.1.d │ │ └── virtual_poly_runme.2.d │ ├── d_nativepointers.i │ ├── default_arg_values.i │ ├── default_args.i │ ├── default_args_c.i │ ├── default_constructor.i │ ├── defvalue_constructor.i │ ├── delphi │ │ ├── Makefile │ │ └── Makefile.in │ ├── derived_byvalue.i │ ├── derived_nested.i │ ├── destructor_reprotected.i │ ├── director_abstract.i │ ├── director_alternating.i │ ├── director_basic.i │ ├── director_binary_string.i │ ├── director_classes.i │ ├── director_classic.i │ ├── director_constructor.i │ ├── director_default.i │ ├── director_detect.i │ ├── director_enum.i │ ├── director_exception.i │ ├── director_extend.i │ ├── director_finalizer.i │ ├── director_frob.i │ ├── director_ignore.i │ ├── director_keywords.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_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_smartptr.i │ ├── director_stl.i │ ├── director_string.i │ ├── director_thread.i │ ├── director_unroll.i │ ├── director_using.i │ ├── director_void.i │ ├── director_wombat.i │ ├── director_wstring.i │ ├── disown.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 │ │ ├── Makefile.in │ │ ├── c_bad_name.i │ │ ├── c_bad_name.stderr │ │ ├── c_bad_native.i │ │ ├── c_bad_native.stderr │ │ ├── c_class.i │ │ ├── c_class.stderr │ │ ├── c_deprecated.i │ │ ├── c_deprecated.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_varargs_neg.i │ │ ├── c_varargs_neg.stderr │ │ ├── cpp_bad_extern.i │ │ ├── cpp_bad_extern.stderr │ │ ├── cpp_extend_destructors.i │ │ ├── cpp_extend_destructors.stderr │ │ ├── cpp_extend_redefine.i │ │ ├── cpp_extend_redefine.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_inherit.i │ │ ├── cpp_inherit.stderr │ │ ├── cpp_inherit_ignored.i │ │ ├── cpp_inherit_ignored.stderr │ │ ├── cpp_inline_namespace.i │ │ ├── cpp_inline_namespace.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_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_private_inherit.i │ │ ├── cpp_private_inherit.stderr │ │ ├── cpp_recursive_typedef.i │ │ ├── cpp_recursive_typedef.stderr │ │ ├── cpp_shared_ptr.i │ │ ├── cpp_shared_ptr.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_repeat.i │ │ ├── cpp_template_repeat.stderr │ │ ├── cpp_template_undef.i │ │ ├── cpp_template_undef.stderr │ │ ├── cpp_using_not.i │ │ ├── cpp_using_not.stderr │ │ ├── cpp_using_type_aliasing.i │ │ ├── cpp_using_type_aliasing.stderr │ │ ├── cpp_using_undef.i │ │ ├── cpp_using_undef.stderr │ │ ├── nomodule.i │ │ ├── nomodule.stderr │ │ ├── pp_badeval.i │ │ ├── pp_badeval.stderr │ │ ├── pp_constant.i │ │ ├── pp_constant.stderr │ │ ├── pp_defined.i │ │ ├── pp_defined.stderr │ │ ├── pp_deprecated.i │ │ ├── pp_deprecated.stderr │ │ ├── pp_illegal_argument.i │ │ ├── pp_illegal_argument.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_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_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_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_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_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 │ ├── fragments.i │ ├── friends.i │ ├── friends_template.i │ ├── funcptr.i │ ├── funcptr_cpp.i │ ├── function_typedef.i │ ├── fvirtual.i │ ├── global_functions.i │ ├── global_namespace.i │ ├── global_ns_arg.i │ ├── global_scope_types.i │ ├── global_vars.i │ ├── go │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── abstract_access_runme.go │ │ ├── abstract_typedef2_runme.go │ │ ├── abstract_typedef_runme.go │ │ ├── abstract_virtual_runme.go │ │ ├── argout_runme.go │ │ ├── array_member_runme.go │ │ ├── arrays_global_runme.go │ │ ├── char_binary_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_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_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_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 │ │ ├── Makefile.in │ │ ├── README │ │ ├── casts_runme.scm │ │ ├── char_constant_runme.scm │ │ ├── class_ignore_runme.scm │ │ ├── constover_runme.scm │ │ ├── contract_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_string_runme.scm │ │ ├── li_typemaps_runme.scm │ │ ├── list_vector_runme.scm │ │ ├── multivalue_runme.scm │ │ ├── name_runme.scm │ │ ├── overload_complicated_runme.scm │ │ ├── overload_copy_runme.scm │ │ ├── overload_extend_c_runme.scm │ │ ├── overload_extend_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_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.i │ ├── integers.i │ ├── intermediary_classname.i │ ├── java │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── aggregate_runme.java │ │ ├── allprotected_runme.java │ │ ├── apply_signed_char_runme.java │ │ ├── apply_strings_runme.java │ │ ├── array_member_runme.java │ │ ├── arrays_global_twodim_runme.java │ │ ├── char_binary_runme.java │ │ ├── char_strings_runme.java │ │ ├── constant_directive_runme.java │ │ ├── cpp11_constexpr_runme.java │ │ ├── cpp11_lambda_functions_runme.java │ │ ├── cpp11_li_std_array_runme.java │ │ ├── cpp11_result_of_runme.java │ │ ├── cpp11_strongly_typed_enumerations_runme.java │ │ ├── cpp11_strongly_typed_enumerations_simple_runme.java │ │ ├── cpp11_thread_local_runme.java │ │ ├── cpp11_type_aliasing_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_runme.java │ │ ├── director_frob_runme.java │ │ ├── director_ignore_runme.java │ │ ├── director_nested_class_runme.java │ │ ├── director_nspace_runme.java │ │ ├── director_pass_by_value_runme.java │ │ ├── director_primitives_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_wombat_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_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_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_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_std_auto_ptr_runme.java │ │ ├── li_std_except_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_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_runme.java │ │ ├── multiple_inheritance_shared_ptr_runme.java │ │ ├── namespace_forward_declaration_runme.java │ │ ├── naturalvar_more_runme.java │ │ ├── naturalvar_onoff_runme.java │ │ ├── nested_class_runme.java │ │ ├── nested_extend_c_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 │ │ ├── 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_classes_runme.java │ │ ├── template_default_arg_runme.java │ │ ├── template_default_class_parms_runme.java │ │ ├── template_default_class_parms_typedef_runme.java │ │ ├── template_methods_runme.java │ │ ├── template_namespace_forward_declaration_runme.java │ │ ├── template_nested_runme.java │ │ ├── template_nested_typemaps_runme.java │ │ ├── template_partial_specialization_runme.java │ │ ├── template_partial_specialization_typedef_runme.java │ │ ├── template_template_parameters_runme.java │ │ ├── template_templated_constructors_runme.java │ │ ├── template_typedef_inherit_runme.java │ │ ├── template_typedef_typedef_runme.java │ │ ├── template_using_directive_and_declaration_forward_runme.java │ │ ├── typemap_arrays_runme.java │ │ ├── typemap_namespace_runme.java │ │ ├── typemap_out_optimal_runme.java │ │ ├── unions_runme.java │ │ ├── using_directive_and_declaration_forward_runme.java │ │ ├── using_directive_and_declaration_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_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 │ │ ├── Makefile.in │ │ ├── abstract_access_runme.js │ │ ├── abstract_inherit_runme.js │ │ ├── abstract_typedef2_runme.js │ │ ├── abstract_typedef_runme.js │ │ ├── abstract_virtual_runme.js │ │ ├── array_member_runme.js │ │ ├── arrays_global_runme.js │ │ ├── callback_runme.js │ │ ├── char_binary_runme.js │ │ ├── char_strings_runme.js │ │ ├── class_ignore_runme.js │ │ ├── class_scope_weird_runme.js │ │ ├── complextest_runme.js │ │ ├── constover_runme.js │ │ ├── constructor_copy_runme.js │ │ ├── cpp11_strongly_typed_enumerations_runme.js │ │ ├── cpp_enum_runme.js │ │ ├── cpp_namespace_runme.js │ │ ├── cpp_static_runme.js │ │ ├── director_alternating_runme.js │ │ ├── disown_runme.js │ │ ├── dynamic_cast_runme.js │ │ ├── empty_c_runme.js │ │ ├── empty_runme.js │ │ ├── enum_template_runme.js │ │ ├── infinity_runme.js │ │ ├── namespace_virtual_method_runme.js │ │ ├── node_template │ │ │ ├── binding.gyp.in │ │ │ └── index.js.in │ │ ├── nspace_extend_runme.js │ │ ├── nspace_runme.js │ │ ├── null_pointer_runme.js │ │ ├── overload_copy_runme.js │ │ ├── preproc_include_runme.js │ │ ├── preproc_runme.js │ │ ├── rename1_runme.js │ │ ├── rename2_runme.js │ │ ├── rename3_runme.js │ │ ├── rename4_runme.js │ │ ├── rename_scope_runme.js │ │ ├── rename_simple_runme.js │ │ ├── ret_by_value_runme.js │ │ ├── string_simple_runme.js │ │ ├── struct_value_runme.js │ │ ├── swig_exception_runme.js │ │ ├── template_static_runme.js │ │ ├── typedef_class_runme.js │ │ ├── typedef_inherit_runme.js │ │ ├── typedef_scope_runme.js │ │ ├── typemap_arrays_runme.js │ │ ├── typemap_delete_runme.js │ │ ├── typemap_namespace_runme.js │ │ ├── typemap_ns_using_runme.js │ │ ├── using1_runme.js │ │ ├── using2_runme.js │ │ └── varargs_runme.js │ ├── 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_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_carray.i │ ├── li_std_combinations.i │ ├── li_std_container_typemaps.i │ ├── li_std_containers_int.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_enum.i │ ├── li_std_vector_extra.i │ ├── li_std_vector_member_var.i │ ├── li_std_vector_ptr.i │ ├── li_std_vectora.i │ ├── li_std_wstream.i │ ├── li_std_wstring.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 │ │ ├── Makefile.in │ │ ├── abstract_access_runme.lua │ │ ├── array_member_runme.lua │ │ ├── arrays_global_runme.lua │ │ ├── char_strings_runme.lua │ │ ├── chartest_runme.lua │ │ ├── cpp11_strongly_typed_enumerations_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_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_factory_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_no_module_global_runme.lua │ │ ├── member_pointer_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_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_no_module_global.i │ ├── member_funcptr_galore.i │ ├── member_pointer.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 │ ├── multiple_inheritance.i │ ├── multiple_inheritance_abstract.i │ ├── multiple_inheritance_interfaces.i │ ├── multiple_inheritance_nspace.i │ ├── multiple_inheritance_shared_ptr.i │ ├── multivalue.i │ ├── mzscheme │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── casts_runme.scm │ │ ├── char_constant_runme.scm │ │ ├── imports_runme.scm │ │ ├── integers_runme.scm │ │ ├── name_runme.scm │ │ └── unions_runme.scm │ ├── name.i │ ├── name_cxx.i │ ├── name_warnings.i │ ├── namespace_class.i │ ├── namespace_enum.i │ ├── namespace_extend.i │ ├── namespace_forward_declaration.i │ ├── namespace_nested.i │ ├── namespace_spaces.i │ ├── namespace_template.i │ ├── namespace_typedef_class.i │ ├── namespace_typemap.i │ ├── namespace_union.i │ ├── namespace_virtual_method.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_private.i │ ├── nested_scope.i │ ├── nested_structs.i │ ├── nested_template_base.i │ ├── nested_workaround.i │ ├── newobject1.i │ ├── newobject2.i │ ├── nspace.i │ ├── nspace_extend.i │ ├── null_pointer.i │ ├── ocaml │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── class_ignore_runme.ml │ │ ├── imports_runme.ml │ │ ├── makedebugtop │ │ ├── minherit_runme.ml │ │ ├── name_runme.ml │ │ ├── newobject1_runme.ml │ │ ├── overload_copy_runme.ml │ │ ├── sneaky1_runme.ml │ │ ├── throw_exception_runme.ml │ │ ├── typedef_mptr_runme.ml │ │ ├── typename_runme.ml │ │ ├── unions_runme.ml │ │ ├── using_protected_runme.ml │ │ ├── varargs_runme.ml │ │ └── voidtest_runme.ml │ ├── octave │ │ ├── Makefile │ │ ├── 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 │ │ ├── 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_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_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_carray_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 │ │ ├── li_std_wstring_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_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_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 │ │ ├── Makefile.in │ │ ├── README │ │ ├── aggregate_runme.pl │ │ ├── apply_signed_char_runme.pl │ │ ├── apply_strings_runme.pl │ │ ├── array_member_runme.pl │ │ ├── char_binary_runme.pl │ │ ├── char_strings_runme.pl │ │ ├── class_ignore_runme.pl │ │ ├── contract_runme.pl │ │ ├── cpp11_strongly_typed_enumerations_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_reference_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 │ │ ├── naturalvar_runme.pl │ │ ├── operator_overload_break_runme.pl │ │ ├── operator_overload_runme.pl │ │ ├── overload_copy_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 │ │ ├── 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 │ │ ├── Makefile.in │ │ ├── abstract_inherit_ok_runme.php │ │ ├── abstract_inherit_runme.php │ │ ├── add_link_runme.php │ │ ├── argout_runme.php │ │ ├── arrayptr_runme.php │ │ ├── arrays_global_runme.php │ │ ├── arrays_global_twodim_runme.php │ │ ├── arrays_runme.php │ │ ├── arrays_scope_runme.php │ │ ├── callback_runme.php │ │ ├── casts_runme.php │ │ ├── char_strings_runme.php │ │ ├── class_ignore_runme.php │ │ ├── conversion_namespace_runme.php │ │ ├── conversion_ns_template_runme.php │ │ ├── conversion_runme.php │ │ ├── cpp11_strongly_typed_enumerations_runme.php │ │ ├── cpp_basic_runme.php │ │ ├── cpp_static_runme.php │ │ ├── director_abstract_runme.php │ │ ├── director_basic_runme.php │ │ ├── director_classic_runme.php │ │ ├── director_default_runme.php │ │ ├── director_detect_runme.php │ │ ├── director_enum_runme.php │ │ ├── director_exception_runme.php │ │ ├── director_extend_runme.php │ │ ├── director_finalizer_runme.php │ │ ├── director_frob_runme.php │ │ ├── director_nested_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 │ │ ├── enum_scope_template_runme.php │ │ ├── evil_diamond_ns_runme.php │ │ ├── evil_diamond_prop_runme.php │ │ ├── evil_diamond_runme.php │ │ ├── exception_order_runme.php │ │ ├── extend_template_ns_runme.php │ │ ├── extend_template_runme.php │ │ ├── grouping_runme.php │ │ ├── ignore_parameter_runme.php │ │ ├── import_nomodule_runme.php │ │ ├── li_carrays_cpp_runme.php │ │ ├── li_carrays_runme.php │ │ ├── li_factory_runme.php │ │ ├── li_std_string_runme.php │ │ ├── li_std_vector_member_var_runme.php │ │ ├── newobject1_runme.php │ │ ├── overload_rename_runme.php │ │ ├── overload_return_type_runme.php │ │ ├── php_iterator_runme.php │ │ ├── pointer_reference_runme.php │ │ ├── prefix_runme.php │ │ ├── preproc_constants_c_runme.php │ │ ├── preproc_constants_runme.php │ │ ├── primitive_ref_runme.php │ │ ├── rename_scope_runme.php │ │ ├── skel.php │ │ ├── smart_pointer_rename_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 │ ├── php5 │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── abstract_inherit_ok_runme.php │ │ ├── abstract_inherit_runme.php │ │ ├── add_link_runme.php │ │ ├── argout_runme.php │ │ ├── arrayptr_runme.php │ │ ├── arrays_global_runme.php │ │ ├── arrays_global_twodim_runme.php │ │ ├── arrays_runme.php │ │ ├── arrays_scope_runme.php │ │ ├── callback_runme.php │ │ ├── casts_runme.php │ │ ├── char_strings_runme.php │ │ ├── class_ignore_runme.php │ │ ├── conversion_namespace_runme.php │ │ ├── conversion_ns_template_runme.php │ │ ├── conversion_runme.php │ │ ├── cpp11_strongly_typed_enumerations_runme.php │ │ ├── cpp_basic_runme.php │ │ ├── cpp_static_runme.php │ │ ├── director_abstract_runme.php │ │ ├── director_basic_runme.php │ │ ├── director_classic_runme.php │ │ ├── director_default_runme.php │ │ ├── director_detect_runme.php │ │ ├── director_enum_runme.php │ │ ├── director_exception_runme.php │ │ ├── director_extend_runme.php │ │ ├── director_finalizer_runme.php │ │ ├── director_frob_runme.php │ │ ├── director_nested_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 │ │ ├── enum_scope_template_runme.php │ │ ├── evil_diamond_ns_runme.php │ │ ├── evil_diamond_prop_runme.php │ │ ├── evil_diamond_runme.php │ │ ├── exception_order_runme.php │ │ ├── extend_template_ns_runme.php │ │ ├── extend_template_runme.php │ │ ├── grouping_runme.php │ │ ├── ignore_parameter_runme.php │ │ ├── import_nomodule_runme.php │ │ ├── li_carrays_cpp_runme.php │ │ ├── li_carrays_runme.php │ │ ├── li_factory_runme.php │ │ ├── li_std_string_runme.php │ │ ├── li_std_vector_member_var_runme.php │ │ ├── newobject1_runme.php │ │ ├── overload_rename_runme.php │ │ ├── overload_return_type_runme.php │ │ ├── php_iterator_runme.php │ │ ├── pointer_reference_runme.php │ │ ├── prefix_runme.php │ │ ├── preproc_constants_c_runme.php │ │ ├── preproc_constants_runme.php │ │ ├── primitive_ref_runme.php │ │ ├── rename_scope_runme.php │ │ ├── skel.php │ │ ├── smart_pointer_rename_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 │ ├── pike │ │ ├── Makefile │ │ └── Makefile.in │ ├── pointer_in_out.i │ ├── pointer_reference.i │ ├── prefix.i │ ├── preproc.i │ ├── preproc_constants.i │ ├── preproc_constants_c.i │ ├── preproc_defined.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 │ ├── primitive_ref.i │ ├── primitive_types.i │ ├── private_assign.i │ ├── profiletest.i │ ├── protected_rename.i │ ├── pure_virtual.i │ ├── python │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── abstract_access_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 │ │ ├── char_binary_runme.py │ │ ├── class_ignore_runme.py │ │ ├── class_scope_weird_runme.py │ │ ├── compactdefaultargs_runme.py │ │ ├── complextest_runme.py │ │ ├── constant_directive_runme.py │ │ ├── constover_runme.py │ │ ├── constructor_copy_runme.py │ │ ├── constructor_rename_runme.py │ │ ├── contract_runme.py │ │ ├── cpp11_alternate_function_syntax_runme.py │ │ ├── cpp11_decltype_runme.py │ │ ├── cpp11_function_objects_runme.py │ │ ├── cpp11_initializer_list_extend_runme.py │ │ ├── cpp11_initializer_list_runme.py │ │ ├── cpp11_li_std_array_runme.py │ │ ├── cpp11_null_pointer_constant_runme.py │ │ ├── cpp11_raw_string_literals_runme.py │ │ ├── cpp11_result_of_runme.py │ │ ├── cpp11_rvalue_reference_runme.py │ │ ├── cpp11_strongly_typed_enumerations_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 │ │ ├── cpp_enum_runme.py │ │ ├── cpp_namespace_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_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_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 │ │ ├── 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_ns_runme.py │ │ ├── extend_template_runme.py │ │ ├── extend_variable_runme.py │ │ ├── extern_c_runme.py │ │ ├── file_test_runme.py │ │ ├── friends_runme.py │ │ ├── funcptr_cpp_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 │ │ ├── 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_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_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_carray_runme.py │ │ ├── li_std_containers_int_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_using_runme.py │ │ ├── li_std_set_runme.py │ │ ├── li_std_stream_runme.py │ │ ├── li_std_string_extra_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_runme.py │ │ ├── member_pointer_runme.py │ │ ├── memberin_extend_c_runme.py │ │ ├── minherit_runme.py │ │ ├── mod_runme.py │ │ ├── multi_import_runme.py │ │ ├── namespace_class_runme.py │ │ ├── namespace_typemap_runme.py │ │ ├── namespace_virtual_method_runme.py │ │ ├── naturalvar_runme.py │ │ ├── nested_template_base_runme.py │ │ ├── nested_workaround_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_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_defined_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_runme3.py │ │ ├── python_append_runme.py │ │ ├── python_builtin_runme.py │ │ ├── python_destructor_exception_runme.py │ │ ├── python_docstring_runme.py │ │ ├── python_extranative_runme.py │ │ ├── python_moduleimport_runme.py │ │ ├── python_nondynamic_runme.py │ │ ├── python_overload_simple_cast_runme.py │ │ ├── python_pickle_runme.py │ │ ├── python_pybuf_runme3.py │ │ ├── python_pythoncode_runme.py │ │ ├── python_richcompare_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_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_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_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 │ │ ├── threads_exception_runme.py │ │ ├── typedef_class_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 │ │ ├── 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_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_append.i │ ├── python_builtin.i │ ├── python_destructor_exception.i │ ├── python_director.i │ ├── python_docstring.i │ ├── python_extranative.i │ ├── python_moduleimport.i │ ├── python_nondynamic.i │ ├── python_overload_simple_cast.i │ ├── python_pickle.i │ ├── python_pybuf.i │ ├── python_pythoncode.i │ ├── python_richcompare.i │ ├── python_strict_unicode.i │ ├── python_threads.i │ ├── python_varargs_typemap.i │ ├── r │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── arrays_dimensionless_runme.R │ │ ├── funcptr_runme.R │ │ ├── ignore_parameter_runme.R │ │ ├── integers_runme.R │ │ ├── li_std_vector_runme.R │ │ ├── overload_method_runme.R │ │ ├── preproc_constants_runme.R │ │ ├── r_copy_struct_runme.R │ │ ├── r_double_delete_runme.R │ │ ├── r_legacy_runme.R │ │ ├── r_sexp_runme.R │ │ ├── rename_simple_runme.R │ │ ├── simple_array_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 │ ├── 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 │ │ ├── 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 │ │ ├── argout_runme.rb │ │ ├── array_member_runme.rb │ │ ├── arrays_global_runme.rb │ │ ├── arrays_runme.rb │ │ ├── bools_runme.rb │ │ ├── cast_operator_runme.rb │ │ ├── casts_runme.rb │ │ ├── char_constant_runme.rb │ │ ├── check_missing_tests.rb │ │ ├── class_ignore_runme.rb │ │ ├── const_const_runme.rb │ │ ├── constover_runme.rb │ │ ├── cpp11_li_std_array_runme.rb │ │ ├── cpp11_strongly_typed_enumerations_runme.rb │ │ ├── cpp_namespace_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_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 │ │ ├── grouping_runme.rb │ │ ├── ignore_parameter_runme.rb │ │ ├── imports_runme.rb │ │ ├── inherit_missing_runme.rb │ │ ├── integers_runme.rb │ │ ├── li_boost_shared_ptr_bits_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_cstring_runme.rb │ │ ├── li_factory_runme.rb │ │ ├── li_math_runme.rb │ │ ├── li_std_deque_runme.rb │ │ ├── li_std_functors_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 │ │ ├── member_pointer_runme.rb │ │ ├── minherit_runme.rb │ │ ├── namespace_typemap_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_simple_runme.rb │ │ ├── overload_subtype_runme.rb │ │ ├── overload_template_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_keywords_runme.rb │ │ ├── ruby_li_std_speed_runme.rb │ │ ├── ruby_manual_proxy_runme.rb │ │ ├── ruby_minherit_shared_ptr_runme.rb │ │ ├── ruby_naming_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_ns4_runme.rb │ │ ├── template_ns_runme.rb │ │ ├── template_rename_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_keywords.i │ ├── ruby_li_std_speed.i │ ├── ruby_manual_proxy.i │ ├── ruby_minherit_shared_ptr.i │ ├── ruby_naming.i │ ├── ruby_track_objects.i │ ├── ruby_track_objects_directors.i │ ├── samename.i │ ├── schemerunme │ │ ├── casts.scm │ │ ├── char_constant.scm │ │ ├── class_ignore.scm │ │ ├── constover.scm │ │ ├── contract.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_string.scm │ │ ├── li_typemaps.scm │ │ ├── li_typemaps_proxy.scm │ │ ├── list_vector.scm │ │ ├── multiple_inheritance_proxy.scm │ │ ├── multivalue.scm │ │ ├── name.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 │ │ ├── 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 │ │ ├── array_member_runme.sci │ │ ├── arrays_dimensionless_runme.sci │ │ ├── arrays_global_runme.sci │ │ ├── arrays_global_twodim_runme.sci │ │ ├── bools_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_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 │ ├── 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 │ │ ├── Makefile.in │ │ ├── README │ │ ├── bools_runme.tcl │ │ ├── clientdata_prop_runme.tcl │ │ ├── cpp11_strongly_typed_enumerations_runme.tcl │ │ ├── disown_runme.tcl │ │ ├── enum_thorough_runme.tcl │ │ ├── import_nomodule_runme.tcl │ │ ├── imports_runme.tcl │ │ ├── li_std_string_runme.tcl │ │ ├── member_pointer_runme.tcl │ │ ├── newobject1_runme.tcl │ │ ├── newobject2_runme.tcl │ │ ├── null_pointer_runme.tcl │ │ ├── overload_copy_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_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_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_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_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_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_partial_arg.i │ ├── template_partial_specialization.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_static.i │ ├── template_tbase_template.i │ ├── template_template_parameters.i │ ├── template_templated_constructors.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_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_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_variables.i │ ├── typemap_various.i │ ├── typename.i │ ├── types_directive.i │ ├── uffi │ │ ├── Makefile │ │ └── Makefile.in │ ├── 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_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 │ ├── 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 ├── allegrocl │ ├── allegrocl.swg │ ├── inout_typemaps.i │ ├── longlongs.i │ ├── std_list.i │ ├── std_string.i │ └── typemaps.i ├── allkw.swg ├── attribute.i ├── carrays.i ├── cdata.i ├── cffi │ └── cffi.swg ├── chicken │ ├── chicken.swg │ ├── chickenkw.swg │ ├── chickenrun.swg │ ├── extra-install.list │ ├── multi-generic.scm │ ├── std_string.i │ ├── swigclosprefix.scm │ ├── tinyclos-multi-generic.patch │ └── typemaps.i ├── clisp │ └── clisp.swg ├── cmalloc.i ├── constraints.i ├── cpointer.i ├── csharp │ ├── arrays_csharp.i │ ├── boost_intrusive_ptr.i │ ├── boost_shared_ptr.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_deque.i │ ├── std_except.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_shared_ptr.i │ ├── std_string.i │ ├── std_vector.i │ ├── std_wstring.i │ ├── stl.i │ ├── swiginterface.i │ ├── swigtype_inout.i │ ├── typemaps.i │ └── wchar.i ├── cstring.i ├── cwstring.i ├── d │ ├── 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_common.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_shared_ptr.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── typemaps.i │ └── wrapperloader.swg ├── delphi │ ├── delphi.swg │ ├── delphihead.swg │ ├── director.swg │ ├── dllnames_fixup.pl │ ├── std_string.i │ └── typemaps.i ├── director_common.swg ├── exception.i ├── gcj │ ├── cni.i │ ├── cni.swg │ └── javaprims.i ├── go │ ├── cdata.i │ ├── exception.i │ ├── go.swg │ ├── gokw.swg │ ├── goruntime.swg │ ├── gostring.swg │ ├── 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 │ └── typemaps.i ├── guile │ ├── Makefile │ ├── 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_common.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── swigrun.i │ └── typemaps.i ├── intrusive_ptr.i ├── inttypes.i ├── java │ ├── 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_map.i │ ├── std_pair.i │ ├── std_shared_ptr.i │ ├── std_string.i │ ├── std_vector.i │ ├── std_wstring.i │ ├── stl.i │ ├── swiginterface.i │ ├── typemaps.i │ └── various.i ├── javascript │ ├── jsc │ │ ├── arrays_javascript.i │ │ ├── ccomplex.i │ │ ├── cdata.i │ │ ├── complex.i │ │ ├── exception.i │ │ ├── javascript.swg │ │ ├── javascriptcode.swg │ │ ├── javascriptcomplex.swg │ │ ├── javascriptfragments.swg │ │ ├── javascripthelpers.swg │ │ ├── javascriptinit.swg │ │ ├── javascriptkw.swg │ │ ├── javascriptprimtypes.swg │ │ ├── javascriptrun.swg │ │ ├── javascriptruntime.swg │ │ ├── javascriptstrings.swg │ │ ├── javascripttypemaps.swg │ │ ├── std_common.i │ │ ├── std_complex.i │ │ ├── std_deque.i │ │ ├── std_except.i │ │ ├── std_map.i │ │ ├── std_pair.i │ │ ├── std_string.i │ │ ├── std_vector.i │ │ ├── stl.i │ │ └── typemaps.i │ └── v8 │ │ ├── arrays_javascript.i │ │ ├── ccomplex.i │ │ ├── cdata.i │ │ ├── complex.i │ │ ├── exception.i │ │ ├── javascript.swg │ │ ├── javascriptcode.swg │ │ ├── javascriptcomplex.swg │ │ ├── javascriptfragments.swg │ │ ├── javascripthelpers.swg │ │ ├── javascriptinit.swg │ │ ├── javascriptkw.swg │ │ ├── javascriptprimtypes.swg │ │ ├── javascriptrun.swg │ │ ├── javascriptruntime.swg │ │ ├── javascriptstrings.swg │ │ ├── javascripttypemaps.swg │ │ ├── std_common.i │ │ ├── std_complex.i │ │ ├── std_deque.i │ │ ├── std_except.i │ │ ├── std_map.i │ │ ├── std_pair.i │ │ ├── std_string.i │ │ ├── std_vector.i │ │ ├── stl.i │ │ └── typemaps.i ├── linkruntime.c ├── lua │ ├── _std_common.i │ ├── carrays.i │ ├── factory.i │ ├── lua.swg │ ├── lua_fnptr.i │ ├── luakw.swg │ ├── luarun.swg │ ├── luaruntime.swg │ ├── luatypemaps.swg │ ├── std_common.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── typemaps.i │ └── wchar.i ├── math.i ├── modula3 │ ├── modula3.swg │ ├── modula3head.swg │ └── typemaps.i ├── mzscheme │ ├── Makefile │ ├── mzrun.swg │ ├── mzscheme.swg │ ├── std_common.i │ ├── std_deque.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ └── typemaps.i ├── ocaml │ ├── carray.i │ ├── class.swg │ ├── cstring.i │ ├── director.swg │ ├── extra-install.list │ ├── libswigocaml.h │ ├── ocaml.i │ ├── ocaml.swg │ ├── ocamldec.swg │ ├── ocamlkw.swg │ ├── preamble.swg │ ├── std_common.i │ ├── std_complex.i │ ├── std_deque.i │ ├── std_list.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── swig.ml │ ├── swig.mli │ ├── swigp4.ml │ ├── typecheck.i │ ├── typemaps.i │ └── typeregister.swg ├── octave │ ├── attribute.i │ ├── boost_shared_ptr.i │ ├── carrays.i │ ├── cdata.i │ ├── cmalloc.i │ ├── director.swg │ ├── exception.i │ ├── factory.i │ ├── implicit.i │ ├── octave.swg │ ├── octcomplex.swg │ ├── octcontainer.swg │ ├── octfragments.swg │ ├── octiterators.swg │ ├── octopers.swg │ ├── octprimtypes.swg │ ├── octrun.swg │ ├── octruntime.swg │ ├── octstdcommon.swg │ ├── octtypemaps.swg │ ├── octuserdir.swg │ ├── std_alloc.i │ ├── std_basic_string.i │ ├── std_carray.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_vector.i │ ├── stl.i │ └── typemaps.i ├── perl5 │ ├── Makefile.in │ ├── Makefile.pl │ ├── attribute.i │ ├── carrays.i │ ├── cdata.i │ ├── cmalloc.i │ ├── cni.i │ ├── cpointer.i │ ├── cstring.i │ ├── director.swg │ ├── exception.i │ ├── extra-install.list │ ├── factory.i │ ├── jstring.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_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 │ └── typemaps.i ├── php │ ├── const.i │ ├── director.swg │ ├── factory.i │ ├── globalvar.i │ ├── php.swg │ ├── phpinit.swg │ ├── phpkw.swg │ ├── phppointers.i │ ├── phprun.swg │ ├── std_common.i │ ├── std_deque.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── typemaps.i │ └── utils.i ├── php5 │ ├── const.i │ ├── director.swg │ ├── factory.i │ ├── globalvar.i │ ├── php.swg │ ├── phpinit.swg │ ├── phpkw.swg │ ├── phppointers.i │ ├── phprun.swg │ ├── std_common.i │ ├── std_deque.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── typemaps.i │ └── utils.i ├── pike │ ├── pike.swg │ ├── pikekw.swg │ ├── pikerun.swg │ └── std_string.i ├── pointer.i ├── python │ ├── Makefile.in │ ├── README │ ├── argcargv.i │ ├── attribute.i │ ├── boost_shared_ptr.i │ ├── builtin.swg │ ├── carrays.i │ ├── ccomplex.i │ ├── cdata.i │ ├── cmalloc.i │ ├── cni.i │ ├── complex.i │ ├── cpointer.i │ ├── cstring.i │ ├── cwstring.i │ ├── defarg.swg │ ├── director.swg │ ├── embed.i │ ├── exception.i │ ├── factory.i │ ├── file.i │ ├── implicit.i │ ├── jstring.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_carray.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_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 │ ├── typemaps.i │ └── wchar.i ├── r │ ├── 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_string.i │ ├── std_vector.i │ ├── stl.i │ └── typemaps.i ├── ruby │ ├── Makefile.swig │ ├── argcargv.i │ ├── attribute.i │ ├── boost_shared_ptr.i │ ├── carrays.i │ ├── cdata.i │ ├── cmalloc.i │ ├── cni.i │ ├── cpointer.i │ ├── cstring.i │ ├── director.swg │ ├── embed.i │ ├── exception.i │ ├── extconf.rb │ ├── extra-install.list │ ├── factory.i │ ├── file.i │ ├── jstring.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 │ ├── rubystdfunctors.swg │ ├── rubystrings.swg │ ├── rubytracking.swg │ ├── rubytypemaps.swg │ ├── rubyuserdir.swg │ ├── rubywstrings.swg │ ├── std_alloc.i │ ├── std_array.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_vector.i │ ├── std_vectora.i │ ├── std_wstring.i │ ├── stl.i │ ├── timeval.i │ └── typemaps.i ├── runtime.swg ├── scilab │ ├── 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_string.i │ ├── std_vector.i │ ├── stl.i │ └── typemaps.i ├── shared_ptr.i ├── std │ ├── README │ ├── _std_deque.i │ ├── std_alloc.i │ ├── std_array.i │ ├── std_basic_string.i │ ├── std_carray.swg │ ├── 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 ├── swiginit.swg ├── swiglabels.swg ├── swigrun.i ├── swigrun.swg ├── swigwarn.swg ├── swigwarnings.swg ├── tcl │ ├── Makefile.in │ ├── attribute.i │ ├── carrays.i │ ├── cdata.i │ ├── cmalloc.i │ ├── cni.i │ ├── cpointer.i │ ├── cstring.i │ ├── cwstring.i │ ├── exception.i │ ├── factory.i │ ├── jstring.i │ ├── mactkinit.c │ ├── std_common.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── std_wstring.i │ ├── stl.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_strings.swg │ ├── std_wstring.swg │ ├── string.swg │ ├── strings.swg │ ├── swigmacros.swg │ ├── swigobject.swg │ ├── swigtype.swg │ ├── swigtypemaps.swg │ ├── typemaps.swg │ ├── valtypes.swg │ ├── void.swg │ └── wstring.swg ├── uffi │ └── uffi.swg ├── wchar.i ├── windows.i └── xml │ ├── typemaps.i │ └── xml.swg ├── Makefile ├── Makefile.in ├── README ├── RELEASENOTES ├── Source ├── CParse │ ├── .deps │ │ ├── .dirstamp │ │ ├── cscanner.Po │ │ ├── parser.Po │ │ ├── templ.Po │ │ └── util.Po │ ├── .dirstamp │ ├── cparse.h │ ├── cscanner.c │ ├── parser.c │ ├── parser.h │ ├── parser.y │ ├── templ.c │ └── util.c ├── DOH │ ├── .deps │ │ ├── .dirstamp │ │ ├── base.Po │ │ ├── file.Po │ │ ├── fio.Po │ │ ├── hash.Po │ │ ├── list.Po │ │ ├── memory.Po │ │ ├── string.Po │ │ └── void.Po │ ├── .dirstamp │ ├── README │ ├── base.c │ ├── doh.h │ ├── dohint.h │ ├── file.c │ ├── fio.c │ ├── hash.c │ ├── list.c │ ├── memory.c │ ├── string.c │ └── void.c ├── Include │ ├── stamp-h1 │ ├── swigconfig.h │ ├── swigconfig.h.in │ └── swigwarn.h ├── Makefile ├── Makefile.am ├── Makefile.in ├── Modules │ ├── .deps │ │ ├── .dirstamp │ │ ├── allegrocl.Po │ │ ├── allocate.Po │ │ ├── browser.Po │ │ ├── cffi.Po │ │ ├── chicken.Po │ │ ├── clisp.Po │ │ ├── contract.Po │ │ ├── csharp.Po │ │ ├── d.Po │ │ ├── delphi.Po │ │ ├── directors.Po │ │ ├── emit.Po │ │ ├── go.Po │ │ ├── guile.Po │ │ ├── interface.Po │ │ ├── java.Po │ │ ├── javascript.Po │ │ ├── lang.Po │ │ ├── lua.Po │ │ ├── main.Po │ │ ├── modula3.Po │ │ ├── module.Po │ │ ├── mzscheme.Po │ │ ├── nested.Po │ │ ├── ocaml.Po │ │ ├── octave.Po │ │ ├── overload.Po │ │ ├── perl5.Po │ │ ├── php.Po │ │ ├── php5.Po │ │ ├── pike.Po │ │ ├── python.Po │ │ ├── r.Po │ │ ├── ruby.Po │ │ ├── s-exp.Po │ │ ├── scilab.Po │ │ ├── swigmain.Po │ │ ├── tcl8.Po │ │ ├── typepass.Po │ │ ├── uffi.Po │ │ ├── utils.Po │ │ └── xml.Po │ ├── .dirstamp │ ├── README │ ├── allegrocl.cxx │ ├── allocate.cxx │ ├── browser.cxx │ ├── cffi.cxx │ ├── chicken.cxx │ ├── clisp.cxx │ ├── contract.cxx │ ├── csharp.cxx │ ├── d.cxx │ ├── delphi.cxx │ ├── directors.cxx │ ├── emit.cxx │ ├── go.cxx │ ├── guile.cxx │ ├── interface.cxx │ ├── java.cxx │ ├── javascript.cxx │ ├── lang.cxx │ ├── lua.cxx │ ├── main.cxx │ ├── modula3.cxx │ ├── module.cxx │ ├── mzscheme.cxx │ ├── nested.cxx │ ├── ocaml.cxx │ ├── octave.cxx │ ├── overload.cxx │ ├── perl5.cxx │ ├── php.cxx │ ├── php5.cxx │ ├── pike.cxx │ ├── python.cxx │ ├── r.cxx │ ├── ruby.cxx │ ├── s-exp.cxx │ ├── scilab.cxx │ ├── swigmain.cxx │ ├── swigmod.h │ ├── tcl8.cxx │ ├── typepass.cxx │ ├── uffi.cxx │ ├── utils.cxx │ └── xml.cxx ├── Preprocessor │ ├── .deps │ │ ├── .dirstamp │ │ ├── cpp.Po │ │ └── expr.Po │ ├── .dirstamp │ ├── cpp.c │ ├── expr.c │ └── preprocessor.h ├── README └── Swig │ ├── .deps │ ├── .dirstamp │ ├── cwrap.Po │ ├── deprecate.Po │ ├── error.Po │ ├── extend.Po │ ├── fragment.Po │ ├── getopt.Po │ ├── include.Po │ ├── misc.Po │ ├── naming.Po │ ├── parms.Po │ ├── scanner.Po │ ├── stype.Po │ ├── symbol.Po │ ├── tree.Po │ ├── typemap.Po │ ├── typeobj.Po │ ├── typesys.Po │ └── wrapfunc.Po │ ├── .dirstamp │ ├── 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 ├── brew-install ├── capitalize ├── check-include-path.pike ├── config │ ├── ac_compile_warnings.m4 │ ├── ac_define_dir.m4 │ ├── ax_boost_base.m4 │ ├── ax_compare_version.m4 │ ├── ax_cxx_compile_stdcxx_11.m4 │ ├── ax_path_generic.m4 │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── depcomp │ ├── install-sh │ ├── missing │ └── ylwrap ├── convertpath ├── javascript │ ├── Makefile │ ├── Makefile.in │ ├── javascript.cxx │ ├── js_shell.cxx │ ├── js_shell.h │ ├── jsc_shell.cxx │ └── v8_shell.cxx ├── mkdist.py ├── mkrelease.py ├── mkwindows.sh ├── nuget-install.cmd ├── obs-buildlogs.py ├── obs-update ├── pcre-build.sh ├── pyname_patch.py ├── setup.py.tmpl ├── swig.gdb ├── testflags.py ├── travis-linux-install.sh ├── travis-osx-install.sh └── vcfilter ├── Win └── README.txt ├── aclocal.m4 ├── appveyor.yml ├── autogen.sh ├── config.status ├── configure ├── configure.ac ├── pcre-8.33.tar.bz2 ├── pcre ├── .deps │ ├── dftables.Po │ ├── libpcre16_la-pcre16_byte_order.Plo │ ├── libpcre16_la-pcre16_chartables.Plo │ ├── libpcre16_la-pcre16_compile.Plo │ ├── libpcre16_la-pcre16_config.Plo │ ├── libpcre16_la-pcre16_dfa_exec.Plo │ ├── libpcre16_la-pcre16_exec.Plo │ ├── libpcre16_la-pcre16_fullinfo.Plo │ ├── libpcre16_la-pcre16_get.Plo │ ├── libpcre16_la-pcre16_globals.Plo │ ├── libpcre16_la-pcre16_jit_compile.Plo │ ├── libpcre16_la-pcre16_maketables.Plo │ ├── libpcre16_la-pcre16_newline.Plo │ ├── libpcre16_la-pcre16_ord2utf16.Plo │ ├── libpcre16_la-pcre16_refcount.Plo │ ├── libpcre16_la-pcre16_string_utils.Plo │ ├── libpcre16_la-pcre16_study.Plo │ ├── libpcre16_la-pcre16_tables.Plo │ ├── libpcre16_la-pcre16_ucd.Plo │ ├── libpcre16_la-pcre16_utf16_utils.Plo │ ├── libpcre16_la-pcre16_valid_utf16.Plo │ ├── libpcre16_la-pcre16_version.Plo │ ├── libpcre16_la-pcre16_xclass.Plo │ ├── libpcre16_la-pcre_chartables.Plo │ ├── libpcre32_la-pcre32_byte_order.Plo │ ├── libpcre32_la-pcre32_chartables.Plo │ ├── libpcre32_la-pcre32_compile.Plo │ ├── libpcre32_la-pcre32_config.Plo │ ├── libpcre32_la-pcre32_dfa_exec.Plo │ ├── libpcre32_la-pcre32_exec.Plo │ ├── libpcre32_la-pcre32_fullinfo.Plo │ ├── libpcre32_la-pcre32_get.Plo │ ├── libpcre32_la-pcre32_globals.Plo │ ├── libpcre32_la-pcre32_jit_compile.Plo │ ├── libpcre32_la-pcre32_maketables.Plo │ ├── libpcre32_la-pcre32_newline.Plo │ ├── libpcre32_la-pcre32_ord2utf32.Plo │ ├── libpcre32_la-pcre32_refcount.Plo │ ├── libpcre32_la-pcre32_string_utils.Plo │ ├── libpcre32_la-pcre32_study.Plo │ ├── libpcre32_la-pcre32_tables.Plo │ ├── libpcre32_la-pcre32_ucd.Plo │ ├── libpcre32_la-pcre32_utf32_utils.Plo │ ├── libpcre32_la-pcre32_valid_utf32.Plo │ ├── libpcre32_la-pcre32_version.Plo │ ├── libpcre32_la-pcre32_xclass.Plo │ ├── libpcre32_la-pcre_chartables.Plo │ ├── libpcre_la-pcre_byte_order.Plo │ ├── libpcre_la-pcre_chartables.Plo │ ├── libpcre_la-pcre_compile.Plo │ ├── libpcre_la-pcre_config.Plo │ ├── libpcre_la-pcre_dfa_exec.Plo │ ├── libpcre_la-pcre_exec.Plo │ ├── libpcre_la-pcre_fullinfo.Plo │ ├── libpcre_la-pcre_get.Plo │ ├── libpcre_la-pcre_globals.Plo │ ├── libpcre_la-pcre_jit_compile.Plo │ ├── libpcre_la-pcre_maketables.Plo │ ├── libpcre_la-pcre_newline.Plo │ ├── libpcre_la-pcre_ord2utf8.Plo │ ├── libpcre_la-pcre_refcount.Plo │ ├── libpcre_la-pcre_string_utils.Plo │ ├── libpcre_la-pcre_study.Plo │ ├── libpcre_la-pcre_tables.Plo │ ├── libpcre_la-pcre_ucd.Plo │ ├── libpcre_la-pcre_valid_utf8.Plo │ ├── libpcre_la-pcre_version.Plo │ ├── libpcre_la-pcre_xclass.Plo │ ├── libpcrecpp_la-pcre_scanner.Plo │ ├── libpcrecpp_la-pcre_stringpiece.Plo │ ├── libpcrecpp_la-pcrecpp.Plo │ ├── libpcreposix_la-pcreposix.Plo │ ├── pcre_jit_test-pcre_jit_test.Po │ ├── pcre_scanner_unittest-pcre_scanner_unittest.Po │ ├── pcre_stringpiece_unittest-pcre_stringpiece_unittest.Po │ ├── pcrecpp_unittest-pcrecpp_unittest.Po │ ├── pcregrep-pcregrep.Po │ ├── pcretest-pcre16_printint.Po │ ├── pcretest-pcre32_printint.Po │ ├── pcretest-pcre_printint.Po │ └── pcretest-pcretest.Po ├── .libs │ ├── libpcre.a │ ├── libpcre.la │ ├── libpcre.lai │ ├── libpcrecpp.a │ ├── libpcrecpp.la │ ├── libpcrecpp.lai │ ├── libpcreposix.a │ ├── libpcreposix.la │ └── libpcreposix.lai ├── 132html ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── CheckMan ├── CleanTxt ├── Detrail ├── HACKING ├── INSTALL ├── LICENCE ├── Makefile ├── Makefile.am ├── Makefile.in ├── NEWS ├── NON-AUTOTOOLS-BUILD ├── NON-UNIX-USE ├── PrepareRelease ├── README ├── RunGrepTest ├── RunTest ├── RunTest.bat ├── aclocal.m4 ├── ar-lib ├── cmake │ ├── COPYING-CMAKE-SCRIPTS │ ├── FindEditline.cmake │ ├── FindPackageHandleStandardArgs.cmake │ └── FindReadline.cmake ├── compile ├── config-cmake.h.in ├── config.guess ├── config.h ├── config.h.generic ├── config.h.in ├── config.status ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── dftables.c ├── doc │ ├── html │ │ ├── NON-AUTOTOOLS-BUILD.txt │ │ ├── README.txt │ │ ├── index.html │ │ ├── pcre-config.html │ │ ├── pcre.html │ │ ├── pcre16.html │ │ ├── pcre32.html │ │ ├── pcre_assign_jit_stack.html │ │ ├── pcre_compile.html │ │ ├── pcre_compile2.html │ │ ├── pcre_config.html │ │ ├── pcre_copy_named_substring.html │ │ ├── pcre_copy_substring.html │ │ ├── pcre_dfa_exec.html │ │ ├── pcre_exec.html │ │ ├── pcre_free_study.html │ │ ├── pcre_free_substring.html │ │ ├── pcre_free_substring_list.html │ │ ├── pcre_fullinfo.html │ │ ├── pcre_get_named_substring.html │ │ ├── pcre_get_stringnumber.html │ │ ├── pcre_get_stringtable_entries.html │ │ ├── pcre_get_substring.html │ │ ├── pcre_get_substring_list.html │ │ ├── pcre_jit_exec.html │ │ ├── pcre_jit_stack_alloc.html │ │ ├── pcre_jit_stack_free.html │ │ ├── pcre_maketables.html │ │ ├── pcre_pattern_to_host_byte_order.html │ │ ├── pcre_refcount.html │ │ ├── pcre_study.html │ │ ├── pcre_utf16_to_host_byte_order.html │ │ ├── pcre_utf32_to_host_byte_order.html │ │ ├── pcre_version.html │ │ ├── pcreapi.html │ │ ├── pcrebuild.html │ │ ├── pcrecallout.html │ │ ├── pcrecompat.html │ │ ├── pcrecpp.html │ │ ├── pcredemo.html │ │ ├── pcregrep.html │ │ ├── pcrejit.html │ │ ├── pcrelimits.html │ │ ├── pcrematching.html │ │ ├── pcrepartial.html │ │ ├── pcrepattern.html │ │ ├── pcreperform.html │ │ ├── pcreposix.html │ │ ├── pcreprecompile.html │ │ ├── pcresample.html │ │ ├── pcrestack.html │ │ ├── pcresyntax.html │ │ ├── pcretest.html │ │ └── pcreunicode.html │ ├── index.html.src │ ├── pcre-config.1 │ ├── pcre-config.txt │ ├── pcre.3 │ ├── pcre.txt │ ├── pcre16.3 │ ├── pcre32.3 │ ├── pcre_assign_jit_stack.3 │ ├── pcre_compile.3 │ ├── pcre_compile2.3 │ ├── pcre_config.3 │ ├── pcre_copy_named_substring.3 │ ├── pcre_copy_substring.3 │ ├── pcre_dfa_exec.3 │ ├── pcre_exec.3 │ ├── pcre_free_study.3 │ ├── pcre_free_substring.3 │ ├── pcre_free_substring_list.3 │ ├── pcre_fullinfo.3 │ ├── pcre_get_named_substring.3 │ ├── pcre_get_stringnumber.3 │ ├── pcre_get_stringtable_entries.3 │ ├── pcre_get_substring.3 │ ├── pcre_get_substring_list.3 │ ├── pcre_jit_exec.3 │ ├── pcre_jit_stack_alloc.3 │ ├── pcre_jit_stack_free.3 │ ├── pcre_maketables.3 │ ├── pcre_pattern_to_host_byte_order.3 │ ├── pcre_refcount.3 │ ├── pcre_study.3 │ ├── pcre_utf16_to_host_byte_order.3 │ ├── pcre_utf32_to_host_byte_order.3 │ ├── pcre_version.3 │ ├── pcreapi.3 │ ├── pcrebuild.3 │ ├── pcrecallout.3 │ ├── pcrecompat.3 │ ├── pcrecpp.3 │ ├── pcredemo.3 │ ├── pcregrep.1 │ ├── pcregrep.txt │ ├── pcrejit.3 │ ├── pcrelimits.3 │ ├── pcrematching.3 │ ├── pcrepartial.3 │ ├── pcrepattern.3 │ ├── pcreperform.3 │ ├── pcreposix.3 │ ├── pcreprecompile.3 │ ├── pcresample.3 │ ├── pcrestack.3 │ ├── pcresyntax.3 │ ├── pcretest.1 │ ├── pcretest.txt │ ├── pcreunicode.3 │ └── perltest.txt ├── install-sh ├── libpcre.la ├── libpcre.pc ├── libpcre.pc.in ├── libpcre16.pc ├── libpcre16.pc.in ├── libpcre32.pc ├── libpcre32.pc.in ├── libpcre_la-pcre_byte_order.lo ├── libpcre_la-pcre_chartables.lo ├── libpcre_la-pcre_compile.lo ├── libpcre_la-pcre_config.lo ├── libpcre_la-pcre_dfa_exec.lo ├── libpcre_la-pcre_exec.lo ├── libpcre_la-pcre_fullinfo.lo ├── libpcre_la-pcre_get.lo ├── libpcre_la-pcre_globals.lo ├── libpcre_la-pcre_jit_compile.lo ├── libpcre_la-pcre_maketables.lo ├── libpcre_la-pcre_newline.lo ├── libpcre_la-pcre_ord2utf8.lo ├── libpcre_la-pcre_refcount.lo ├── libpcre_la-pcre_string_utils.lo ├── libpcre_la-pcre_study.lo ├── libpcre_la-pcre_tables.lo ├── libpcre_la-pcre_ucd.lo ├── libpcre_la-pcre_valid_utf8.lo ├── libpcre_la-pcre_version.lo ├── libpcre_la-pcre_xclass.lo ├── libpcrecpp.la ├── libpcrecpp.pc ├── libpcrecpp.pc.in ├── libpcrecpp_la-pcre_scanner.lo ├── libpcrecpp_la-pcre_stringpiece.lo ├── libpcrecpp_la-pcrecpp.lo ├── libpcreposix.la ├── libpcreposix.pc ├── libpcreposix.pc.in ├── libpcreposix_la-pcreposix.lo ├── libtool ├── ltmain.sh ├── m4 │ ├── ax_pthread.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ └── pcre_visibility.m4 ├── makevp.bat ├── makevp_c.txt ├── makevp_l.txt ├── missing ├── pcre-config ├── pcre-config.in ├── pcre-swig-install │ ├── bin │ │ └── pcre-config │ ├── include │ │ ├── pcre.h │ │ ├── pcre_scanner.h │ │ ├── pcre_stringpiece.h │ │ ├── pcrecpp.h │ │ ├── pcrecpparg.h │ │ └── pcreposix.h │ ├── lib │ │ ├── libpcre.a │ │ ├── libpcre.la │ │ ├── libpcrecpp.a │ │ ├── libpcrecpp.la │ │ ├── libpcreposix.a │ │ ├── libpcreposix.la │ │ └── pkgconfig │ │ │ ├── libpcre.pc │ │ │ ├── libpcrecpp.pc │ │ │ └── libpcreposix.pc │ └── share │ │ ├── doc │ │ └── pcre │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── LICENCE │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── html │ │ │ ├── NON-AUTOTOOLS-BUILD.txt │ │ │ ├── README.txt │ │ │ ├── index.html │ │ │ ├── pcre-config.html │ │ │ ├── pcre.html │ │ │ ├── pcre16.html │ │ │ ├── pcre32.html │ │ │ ├── pcre_assign_jit_stack.html │ │ │ ├── pcre_compile.html │ │ │ ├── pcre_compile2.html │ │ │ ├── pcre_config.html │ │ │ ├── pcre_copy_named_substring.html │ │ │ ├── pcre_copy_substring.html │ │ │ ├── pcre_dfa_exec.html │ │ │ ├── pcre_exec.html │ │ │ ├── pcre_free_study.html │ │ │ ├── pcre_free_substring.html │ │ │ ├── pcre_free_substring_list.html │ │ │ ├── pcre_fullinfo.html │ │ │ ├── pcre_get_named_substring.html │ │ │ ├── pcre_get_stringnumber.html │ │ │ ├── pcre_get_stringtable_entries.html │ │ │ ├── pcre_get_substring.html │ │ │ ├── pcre_get_substring_list.html │ │ │ ├── pcre_jit_exec.html │ │ │ ├── pcre_jit_stack_alloc.html │ │ │ ├── pcre_jit_stack_free.html │ │ │ ├── pcre_maketables.html │ │ │ ├── pcre_pattern_to_host_byte_order.html │ │ │ ├── pcre_refcount.html │ │ │ ├── pcre_study.html │ │ │ ├── pcre_utf16_to_host_byte_order.html │ │ │ ├── pcre_utf32_to_host_byte_order.html │ │ │ ├── pcre_version.html │ │ │ ├── pcreapi.html │ │ │ ├── pcrebuild.html │ │ │ ├── pcrecallout.html │ │ │ ├── pcrecompat.html │ │ │ ├── pcrecpp.html │ │ │ ├── pcredemo.html │ │ │ ├── pcregrep.html │ │ │ ├── pcrejit.html │ │ │ ├── pcrelimits.html │ │ │ ├── pcrematching.html │ │ │ ├── pcrepartial.html │ │ │ ├── pcrepattern.html │ │ │ ├── pcreperform.html │ │ │ ├── pcreposix.html │ │ │ ├── pcreprecompile.html │ │ │ ├── pcresample.html │ │ │ ├── pcrestack.html │ │ │ ├── pcresyntax.html │ │ │ ├── pcretest.html │ │ │ └── pcreunicode.html │ │ │ ├── pcre-config.txt │ │ │ ├── pcre.txt │ │ │ ├── pcregrep.txt │ │ │ └── pcretest.txt │ │ └── man │ │ ├── man1 │ │ ├── pcre-config.1 │ │ ├── pcregrep.1 │ │ └── pcretest.1 │ │ └── man3 │ │ ├── pcre.3 │ │ ├── pcre16.3 │ │ ├── pcre16_assign_jit_stack.3 │ │ ├── pcre16_compile.3 │ │ ├── pcre16_compile2.3 │ │ ├── pcre16_config.3 │ │ ├── pcre16_copy_named_substring.3 │ │ ├── pcre16_copy_substring.3 │ │ ├── pcre16_dfa_exec.3 │ │ ├── pcre16_exec.3 │ │ ├── pcre16_free_study.3 │ │ ├── pcre16_free_substring.3 │ │ ├── pcre16_free_substring_list.3 │ │ ├── pcre16_fullinfo.3 │ │ ├── pcre16_get_named_substring.3 │ │ ├── pcre16_get_stringnumber.3 │ │ ├── pcre16_get_stringtable_entries.3 │ │ ├── pcre16_get_substring.3 │ │ ├── pcre16_get_substring_list.3 │ │ ├── pcre16_jit_exec.3 │ │ ├── pcre16_jit_stack_alloc.3 │ │ ├── pcre16_jit_stack_free.3 │ │ ├── pcre16_maketables.3 │ │ ├── pcre16_pattern_to_host_byte_order.3 │ │ ├── pcre16_refcount.3 │ │ ├── pcre16_study.3 │ │ ├── pcre16_utf16_to_host_byte_order.3 │ │ ├── pcre16_version.3 │ │ ├── pcre32.3 │ │ ├── pcre32_assign_jit_stack.3 │ │ ├── pcre32_compile.3 │ │ ├── pcre32_compile2.3 │ │ ├── pcre32_config.3 │ │ ├── pcre32_copy_named_substring.3 │ │ ├── pcre32_copy_substring.3 │ │ ├── pcre32_dfa_exec.3 │ │ ├── pcre32_exec.3 │ │ ├── pcre32_free_study.3 │ │ ├── pcre32_free_substring.3 │ │ ├── pcre32_free_substring_list.3 │ │ ├── pcre32_fullinfo.3 │ │ ├── pcre32_get_named_substring.3 │ │ ├── pcre32_get_stringnumber.3 │ │ ├── pcre32_get_stringtable_entries.3 │ │ ├── pcre32_get_substring.3 │ │ ├── pcre32_get_substring_list.3 │ │ ├── pcre32_jit_exec.3 │ │ ├── pcre32_jit_stack_alloc.3 │ │ ├── pcre32_jit_stack_free.3 │ │ ├── pcre32_maketables.3 │ │ ├── pcre32_pattern_to_host_byte_order.3 │ │ ├── pcre32_refcount.3 │ │ ├── pcre32_study.3 │ │ ├── pcre32_utf32_to_host_byte_order.3 │ │ ├── pcre32_version.3 │ │ ├── pcre_assign_jit_stack.3 │ │ ├── pcre_compile.3 │ │ ├── pcre_compile2.3 │ │ ├── pcre_config.3 │ │ ├── pcre_copy_named_substring.3 │ │ ├── pcre_copy_substring.3 │ │ ├── pcre_dfa_exec.3 │ │ ├── pcre_exec.3 │ │ ├── pcre_free_study.3 │ │ ├── pcre_free_substring.3 │ │ ├── pcre_free_substring_list.3 │ │ ├── pcre_fullinfo.3 │ │ ├── pcre_get_named_substring.3 │ │ ├── pcre_get_stringnumber.3 │ │ ├── pcre_get_stringtable_entries.3 │ │ ├── pcre_get_substring.3 │ │ ├── pcre_get_substring_list.3 │ │ ├── pcre_jit_exec.3 │ │ ├── pcre_jit_stack_alloc.3 │ │ ├── pcre_jit_stack_free.3 │ │ ├── pcre_maketables.3 │ │ ├── pcre_pattern_to_host_byte_order.3 │ │ ├── pcre_refcount.3 │ │ ├── pcre_study.3 │ │ ├── pcre_utf16_to_host_byte_order.3 │ │ ├── pcre_utf32_to_host_byte_order.3 │ │ ├── pcre_version.3 │ │ ├── pcreapi.3 │ │ ├── pcrebuild.3 │ │ ├── pcrecallout.3 │ │ ├── pcrecompat.3 │ │ ├── pcrecpp.3 │ │ ├── pcredemo.3 │ │ ├── pcrejit.3 │ │ ├── pcrelimits.3 │ │ ├── pcrematching.3 │ │ ├── pcrepartial.3 │ │ ├── pcrepattern.3 │ │ ├── pcreperform.3 │ │ ├── pcreposix.3 │ │ ├── pcreprecompile.3 │ │ ├── pcresample.3 │ │ ├── pcrestack.3 │ │ ├── pcresyntax.3 │ │ └── pcreunicode.3 ├── pcre.h ├── pcre.h.generic ├── pcre.h.in ├── pcre16_byte_order.c ├── pcre16_chartables.c ├── pcre16_compile.c ├── pcre16_config.c ├── pcre16_dfa_exec.c ├── pcre16_exec.c ├── pcre16_fullinfo.c ├── pcre16_get.c ├── pcre16_globals.c ├── pcre16_jit_compile.c ├── pcre16_maketables.c ├── pcre16_newline.c ├── pcre16_ord2utf16.c ├── pcre16_printint.c ├── pcre16_refcount.c ├── pcre16_string_utils.c ├── pcre16_study.c ├── pcre16_tables.c ├── pcre16_ucd.c ├── pcre16_utf16_utils.c ├── pcre16_valid_utf16.c ├── pcre16_version.c ├── pcre16_xclass.c ├── pcre32_byte_order.c ├── pcre32_chartables.c ├── pcre32_compile.c ├── pcre32_config.c ├── pcre32_dfa_exec.c ├── pcre32_exec.c ├── pcre32_fullinfo.c ├── pcre32_get.c ├── pcre32_globals.c ├── pcre32_jit_compile.c ├── pcre32_maketables.c ├── pcre32_newline.c ├── pcre32_ord2utf32.c ├── pcre32_printint.c ├── pcre32_refcount.c ├── pcre32_string_utils.c ├── pcre32_study.c ├── pcre32_tables.c ├── pcre32_ucd.c ├── pcre32_utf32_utils.c ├── pcre32_valid_utf32.c ├── pcre32_version.c ├── pcre32_xclass.c ├── pcre_byte_order.c ├── pcre_chartables.c ├── pcre_chartables.c.dist ├── pcre_compile.c ├── pcre_config.c ├── pcre_dfa_exec.c ├── pcre_exec.c ├── pcre_fullinfo.c ├── pcre_get.c ├── pcre_globals.c ├── pcre_internal.h ├── pcre_jit_compile.c ├── pcre_jit_test.c ├── pcre_maketables.c ├── pcre_newline.c ├── pcre_ord2utf8.c ├── pcre_printint.c ├── pcre_refcount.c ├── pcre_scanner.cc ├── pcre_scanner.h ├── pcre_scanner_unittest.cc ├── pcre_string_utils.c ├── pcre_stringpiece.cc ├── pcre_stringpiece.h ├── pcre_stringpiece.h.in ├── pcre_stringpiece_unittest.cc ├── pcre_study.c ├── pcre_tables.c ├── pcre_ucd.c ├── pcre_valid_utf8.c ├── pcre_version.c ├── pcre_xclass.c ├── pcrecpp.cc ├── pcrecpp.h ├── pcrecpp_internal.h ├── pcrecpp_unittest.cc ├── pcrecpparg.h ├── pcrecpparg.h.in ├── pcredemo.c ├── pcregexp.pas ├── pcregrep.c ├── pcreposix.c ├── pcreposix.h ├── pcretest.c ├── perltest.pl ├── sljit │ ├── sljitConfig.h │ ├── sljitConfigInternal.h │ ├── sljitExecAllocator.c │ ├── sljitLir.c │ ├── sljitLir.h │ ├── sljitNativeARM_Thumb2.c │ ├── sljitNativeARM_v5.c │ ├── sljitNativeMIPS_32.c │ ├── sljitNativeMIPS_common.c │ ├── sljitNativePPC_32.c │ ├── sljitNativePPC_64.c │ ├── sljitNativePPC_common.c │ ├── sljitNativeSPARC_32.c │ ├── sljitNativeSPARC_common.c │ ├── sljitNativeX86_32.c │ ├── sljitNativeX86_64.c │ ├── sljitNativeX86_common.c │ └── sljitUtils.c ├── stamp-h1 ├── test-driver ├── testdata │ ├── grepbinary │ ├── grepfilelist │ ├── grepinput │ ├── grepinput3 │ ├── grepinput8 │ ├── grepinputv │ ├── grepinputx │ ├── greplist │ ├── grepoutput │ ├── grepoutput8 │ ├── grepoutputN │ ├── greppatN4 │ ├── saved16 │ ├── saved16BE-1 │ ├── saved16BE-2 │ ├── saved16LE-1 │ ├── saved16LE-2 │ ├── saved32 │ ├── saved32BE-1 │ ├── saved32BE-2 │ ├── saved32LE-1 │ ├── saved32LE-2 │ ├── saved8 │ ├── testinput1 │ ├── testinput10 │ ├── testinput11 │ ├── testinput12 │ ├── testinput13 │ ├── testinput14 │ ├── testinput15 │ ├── testinput16 │ ├── testinput17 │ ├── testinput18 │ ├── testinput19 │ ├── testinput2 │ ├── testinput20 │ ├── testinput21 │ ├── testinput22 │ ├── testinput23 │ ├── testinput24 │ ├── testinput25 │ ├── testinput26 │ ├── testinput3 │ ├── testinput4 │ ├── testinput5 │ ├── testinput6 │ ├── testinput7 │ ├── testinput8 │ ├── testinput9 │ ├── testinputEBC │ ├── testoutput1 │ ├── testoutput10 │ ├── testoutput11-16 │ ├── testoutput11-32 │ ├── testoutput11-8 │ ├── testoutput12 │ ├── testoutput13 │ ├── testoutput14 │ ├── testoutput15 │ ├── testoutput16 │ ├── testoutput17 │ ├── testoutput18-16 │ ├── testoutput18-32 │ ├── testoutput19 │ ├── testoutput2 │ ├── testoutput20 │ ├── testoutput21-16 │ ├── testoutput21-32 │ ├── testoutput22-16 │ ├── testoutput22-32 │ ├── testoutput23 │ ├── testoutput24 │ ├── testoutput25 │ ├── testoutput26 │ ├── testoutput3 │ ├── testoutput4 │ ├── testoutput5 │ ├── testoutput6 │ ├── testoutput7 │ ├── testoutput8 │ ├── testoutput9 │ ├── testoutputEBC │ ├── wintestinput3 │ └── wintestoutput3 └── ucp.h ├── preinst-swig ├── preinst-swig.in ├── share └── swig │ └── 3.0.11 │ ├── allegrocl │ ├── allegrocl.swg │ ├── inout_typemaps.i │ ├── longlongs.i │ ├── std_list.i │ ├── std_string.i │ └── typemaps.i │ ├── allkw.swg │ ├── attribute.i │ ├── carrays.i │ ├── cdata.i │ ├── cffi │ └── cffi.swg │ ├── chicken │ ├── chicken.swg │ ├── chickenkw.swg │ ├── chickenrun.swg │ ├── multi-generic.scm │ ├── std_string.i │ ├── swigclosprefix.scm │ ├── tinyclos-multi-generic.patch │ └── typemaps.i │ ├── clisp │ └── clisp.swg │ ├── cmalloc.i │ ├── constraints.i │ ├── cpointer.i │ ├── csharp │ ├── arrays_csharp.i │ ├── boost_intrusive_ptr.i │ ├── boost_shared_ptr.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_deque.i │ ├── std_except.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_shared_ptr.i │ ├── std_string.i │ ├── std_vector.i │ ├── std_wstring.i │ ├── stl.i │ ├── swiginterface.i │ ├── swigtype_inout.i │ ├── typemaps.i │ └── wchar.i │ ├── cstring.i │ ├── cwstring.i │ ├── d │ ├── 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_common.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_shared_ptr.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── typemaps.i │ └── wrapperloader.swg │ ├── delphi │ ├── delphi.swg │ ├── delphihead.swg │ ├── director.swg │ ├── std_string.i │ └── typemaps.i │ ├── director_common.swg │ ├── exception.i │ ├── gcj │ ├── cni.i │ ├── cni.swg │ └── javaprims.i │ ├── go │ ├── cdata.i │ ├── exception.i │ ├── go.swg │ ├── gokw.swg │ ├── goruntime.swg │ ├── gostring.swg │ ├── 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 │ └── typemaps.i │ ├── guile │ ├── common.scm │ ├── cplusplus.i │ ├── guile.i │ ├── guile_scm.swg │ ├── guile_scm_run.swg │ ├── guilemain.i │ ├── interpreter.i │ ├── list-vector.i │ ├── pointer-in-out.i │ ├── ports.i │ ├── std_common.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── swigrun.i │ └── typemaps.i │ ├── intrusive_ptr.i │ ├── inttypes.i │ ├── java │ ├── 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_map.i │ ├── std_pair.i │ ├── std_shared_ptr.i │ ├── std_string.i │ ├── std_vector.i │ ├── std_wstring.i │ ├── stl.i │ ├── swiginterface.i │ ├── typemaps.i │ └── various.i │ ├── javascript │ ├── jsc │ │ ├── arrays_javascript.i │ │ ├── ccomplex.i │ │ ├── cdata.i │ │ ├── complex.i │ │ ├── exception.i │ │ ├── javascript.swg │ │ ├── javascriptcode.swg │ │ ├── javascriptcomplex.swg │ │ ├── javascriptfragments.swg │ │ ├── javascripthelpers.swg │ │ ├── javascriptinit.swg │ │ ├── javascriptkw.swg │ │ ├── javascriptprimtypes.swg │ │ ├── javascriptrun.swg │ │ ├── javascriptruntime.swg │ │ ├── javascriptstrings.swg │ │ ├── javascripttypemaps.swg │ │ ├── std_common.i │ │ ├── std_complex.i │ │ ├── std_deque.i │ │ ├── std_except.i │ │ ├── std_map.i │ │ ├── std_pair.i │ │ ├── std_string.i │ │ ├── std_vector.i │ │ ├── stl.i │ │ └── typemaps.i │ └── v8 │ │ ├── arrays_javascript.i │ │ ├── ccomplex.i │ │ ├── cdata.i │ │ ├── complex.i │ │ ├── exception.i │ │ ├── javascript.swg │ │ ├── javascriptcode.swg │ │ ├── javascriptcomplex.swg │ │ ├── javascriptfragments.swg │ │ ├── javascripthelpers.swg │ │ ├── javascriptinit.swg │ │ ├── javascriptkw.swg │ │ ├── javascriptprimtypes.swg │ │ ├── javascriptrun.swg │ │ ├── javascriptruntime.swg │ │ ├── javascriptstrings.swg │ │ ├── javascripttypemaps.swg │ │ ├── std_common.i │ │ ├── std_complex.i │ │ ├── std_deque.i │ │ ├── std_except.i │ │ ├── std_map.i │ │ ├── std_pair.i │ │ ├── std_string.i │ │ ├── std_vector.i │ │ ├── stl.i │ │ └── typemaps.i │ ├── lua │ ├── _std_common.i │ ├── carrays.i │ ├── factory.i │ ├── lua.swg │ ├── lua_fnptr.i │ ├── luakw.swg │ ├── luarun.swg │ ├── luaruntime.swg │ ├── luatypemaps.swg │ ├── std_common.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── typemaps.i │ └── wchar.i │ ├── math.i │ ├── modula3 │ ├── modula3.swg │ ├── modula3head.swg │ └── typemaps.i │ ├── mzscheme │ ├── mzrun.swg │ ├── mzscheme.swg │ ├── std_common.i │ ├── std_deque.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ └── typemaps.i │ ├── ocaml │ ├── carray.i │ ├── class.swg │ ├── cstring.i │ ├── director.swg │ ├── ocaml.i │ ├── ocaml.swg │ ├── ocamldec.swg │ ├── ocamlkw.swg │ ├── preamble.swg │ ├── std_common.i │ ├── std_complex.i │ ├── std_deque.i │ ├── std_list.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── swig.ml │ ├── swig.mli │ ├── swigp4.ml │ ├── typecheck.i │ ├── typemaps.i │ └── typeregister.swg │ ├── octave │ ├── attribute.i │ ├── boost_shared_ptr.i │ ├── carrays.i │ ├── cdata.i │ ├── cmalloc.i │ ├── director.swg │ ├── exception.i │ ├── factory.i │ ├── implicit.i │ ├── octave.swg │ ├── octcomplex.swg │ ├── octcontainer.swg │ ├── octfragments.swg │ ├── octiterators.swg │ ├── octopers.swg │ ├── octprimtypes.swg │ ├── octrun.swg │ ├── octruntime.swg │ ├── octstdcommon.swg │ ├── octtypemaps.swg │ ├── octuserdir.swg │ ├── std_alloc.i │ ├── std_basic_string.i │ ├── std_carray.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_vector.i │ ├── stl.i │ └── typemaps.i │ ├── perl5 │ ├── Makefile.pl │ ├── attribute.i │ ├── carrays.i │ ├── cdata.i │ ├── cmalloc.i │ ├── cni.i │ ├── cpointer.i │ ├── cstring.i │ ├── director.swg │ ├── exception.i │ ├── factory.i │ ├── jstring.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_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 │ └── typemaps.i │ ├── php │ ├── const.i │ ├── director.swg │ ├── factory.i │ ├── globalvar.i │ ├── php.swg │ ├── phpinit.swg │ ├── phpkw.swg │ ├── phppointers.i │ ├── phprun.swg │ ├── std_common.i │ ├── std_deque.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── typemaps.i │ └── utils.i │ ├── php5 │ ├── const.i │ ├── director.swg │ ├── factory.i │ ├── globalvar.i │ ├── php.swg │ ├── phpinit.swg │ ├── phpkw.swg │ ├── phppointers.i │ ├── phprun.swg │ ├── std_common.i │ ├── std_deque.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── stl.i │ ├── typemaps.i │ └── utils.i │ ├── pike │ ├── pike.swg │ ├── pikekw.swg │ ├── pikerun.swg │ └── std_string.i │ ├── pointer.i │ ├── python │ ├── argcargv.i │ ├── attribute.i │ ├── boost_shared_ptr.i │ ├── builtin.swg │ ├── carrays.i │ ├── ccomplex.i │ ├── cdata.i │ ├── cmalloc.i │ ├── cni.i │ ├── complex.i │ ├── cpointer.i │ ├── cstring.i │ ├── cwstring.i │ ├── defarg.swg │ ├── director.swg │ ├── embed.i │ ├── exception.i │ ├── factory.i │ ├── file.i │ ├── implicit.i │ ├── jstring.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_carray.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_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 │ ├── typemaps.i │ └── wchar.i │ ├── r │ ├── 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_string.i │ ├── std_vector.i │ ├── stl.i │ └── typemaps.i │ ├── ruby │ ├── Makefile.swig │ ├── argcargv.i │ ├── attribute.i │ ├── boost_shared_ptr.i │ ├── carrays.i │ ├── cdata.i │ ├── cmalloc.i │ ├── cni.i │ ├── cpointer.i │ ├── cstring.i │ ├── director.swg │ ├── embed.i │ ├── exception.i │ ├── extconf.rb │ ├── factory.i │ ├── file.i │ ├── jstring.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 │ ├── rubystdfunctors.swg │ ├── rubystrings.swg │ ├── rubytracking.swg │ ├── rubytypemaps.swg │ ├── rubyuserdir.swg │ ├── rubywstrings.swg │ ├── std_alloc.i │ ├── std_array.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_vector.i │ ├── std_vectora.i │ ├── std_wstring.i │ ├── stl.i │ ├── timeval.i │ └── typemaps.i │ ├── runtime.swg │ ├── scilab │ ├── 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_string.i │ ├── std_vector.i │ ├── stl.i │ └── typemaps.i │ ├── shared_ptr.i │ ├── std │ ├── _std_deque.i │ ├── std_alloc.i │ ├── std_array.i │ ├── std_basic_string.i │ ├── std_carray.swg │ ├── 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 │ ├── swiginit.swg │ ├── swiglabels.swg │ ├── swigrun.i │ ├── swigrun.swg │ ├── swigwarn.swg │ ├── swigwarnings.swg │ ├── tcl │ ├── attribute.i │ ├── carrays.i │ ├── cdata.i │ ├── cmalloc.i │ ├── cni.i │ ├── cpointer.i │ ├── cstring.i │ ├── cwstring.i │ ├── exception.i │ ├── factory.i │ ├── jstring.i │ ├── std_common.i │ ├── std_deque.i │ ├── std_except.i │ ├── std_map.i │ ├── std_pair.i │ ├── std_string.i │ ├── std_vector.i │ ├── std_wstring.i │ ├── stl.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 │ ├── 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_strings.swg │ ├── std_wstring.swg │ ├── string.swg │ ├── strings.swg │ ├── swigmacros.swg │ ├── swigobject.swg │ ├── swigtype.swg │ ├── swigtypemaps.swg │ ├── typemaps.swg │ ├── valtypes.swg │ ├── void.swg │ └── wstring.swg │ ├── uffi │ └── uffi.swg │ ├── wchar.i │ └── windows.i ├── swig.spec ├── swig.spec.in └── vms ├── aaareadme.txt ├── build_end.com ├── build_init.com ├── build_swig.com ├── genbuild.py ├── logicals.com ├── scripts ├── build_all.com ├── compil_cparse.com ├── compil_doh.com ├── compil_modules1_1.com ├── compil_preprocessor.com └── compil_swig.com └── swigconfig.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/.travis.yml -------------------------------------------------------------------------------- /ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/ANNOUNCE -------------------------------------------------------------------------------- /CCache/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/COPYING -------------------------------------------------------------------------------- /CCache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/Makefile -------------------------------------------------------------------------------- /CCache/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/Makefile.in -------------------------------------------------------------------------------- /CCache/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/README -------------------------------------------------------------------------------- /CCache/README.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/README.swig -------------------------------------------------------------------------------- /CCache/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/args.c -------------------------------------------------------------------------------- /CCache/ccache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/ccache.c -------------------------------------------------------------------------------- /CCache/ccache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/ccache.h -------------------------------------------------------------------------------- /CCache/ccache.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/ccache.yo -------------------------------------------------------------------------------- /CCache/ccache_swig_config.h: -------------------------------------------------------------------------------- 1 | #define SWIG_VERSION "3.0.11" 2 | -------------------------------------------------------------------------------- /CCache/cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/cleanup.c -------------------------------------------------------------------------------- /CCache/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/config.h -------------------------------------------------------------------------------- /CCache/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/config.h.in -------------------------------------------------------------------------------- /CCache/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/config.status -------------------------------------------------------------------------------- /CCache/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/configure -------------------------------------------------------------------------------- /CCache/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/configure.ac -------------------------------------------------------------------------------- /CCache/debian/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/debian/NEWS -------------------------------------------------------------------------------- /CCache/debian/compat: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /CCache/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/debian/control -------------------------------------------------------------------------------- /CCache/debian/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/debian/dirs -------------------------------------------------------------------------------- /CCache/debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /CCache/debian/examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/debian/examples -------------------------------------------------------------------------------- /CCache/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/debian/rules -------------------------------------------------------------------------------- /CCache/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/debian/watch -------------------------------------------------------------------------------- /CCache/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/execute.c -------------------------------------------------------------------------------- /CCache/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/hash.c -------------------------------------------------------------------------------- /CCache/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/install-sh -------------------------------------------------------------------------------- /CCache/mdfour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/mdfour.c -------------------------------------------------------------------------------- /CCache/mdfour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/mdfour.h -------------------------------------------------------------------------------- /CCache/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/snprintf.c -------------------------------------------------------------------------------- /CCache/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/stats.c -------------------------------------------------------------------------------- /CCache/test.10764/ccache dir/temp/test1.tmp.unknown.12764.i: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCache/test.10764/ccache dir/temp/tmp.cpp_stderr.unknown.12764: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCache/test.10764/test1.c: -------------------------------------------------------------------------------- 1 | int foo10(int x) { return x; } 2 | -------------------------------------------------------------------------------- /CCache/test.10764/test1.ccc: -------------------------------------------------------------------------------- 1 | int foo10(int x) { return x; } 2 | -------------------------------------------------------------------------------- /CCache/test.22948/ccache dir/temp/test1.tmp.unknown.12604.i: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCache/test.22948/ccache dir/temp/tmp.cpp_stderr.unknown.12604: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCache/test.22948/test1.c: -------------------------------------------------------------------------------- 1 | int foo10(int x) { return x; } 2 | -------------------------------------------------------------------------------- /CCache/test.22948/test1.ccc: -------------------------------------------------------------------------------- 1 | int foo10(int x) { return x; } 2 | -------------------------------------------------------------------------------- /CCache/test.6352/ccache dir/temp/test1.tmp.unknown.10004.i: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCache/test.6352/ccache dir/temp/tmp.cpp_stderr.unknown.10004: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCache/test.6352/test1.c: -------------------------------------------------------------------------------- 1 | int foo10(int x) { return x; } 2 | -------------------------------------------------------------------------------- /CCache/test.6352/test1.ccc: -------------------------------------------------------------------------------- 1 | int foo10(int x) { return x; } 2 | -------------------------------------------------------------------------------- /CCache/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/test.sh -------------------------------------------------------------------------------- /CCache/unify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/unify.c -------------------------------------------------------------------------------- /CCache/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/util.c -------------------------------------------------------------------------------- /CCache/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CCache/web/index.html -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CHANGES -------------------------------------------------------------------------------- /CHANGES.current: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/CHANGES.current -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Doc/Devel/cmdopt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Devel/cmdopt.html -------------------------------------------------------------------------------- /Doc/Devel/cpp11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Devel/cpp11.html -------------------------------------------------------------------------------- /Doc/Devel/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Devel/file.html -------------------------------------------------------------------------------- /Doc/Devel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Devel/index.html -------------------------------------------------------------------------------- /Doc/Devel/migrate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Devel/migrate.txt -------------------------------------------------------------------------------- /Doc/Devel/parm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Devel/parm.html -------------------------------------------------------------------------------- /Doc/Devel/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Devel/runtime.txt -------------------------------------------------------------------------------- /Doc/Devel/scanner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Devel/scanner.html -------------------------------------------------------------------------------- /Doc/Devel/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Devel/tree.html -------------------------------------------------------------------------------- /Doc/Devel/wrapobj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Devel/wrapobj.html -------------------------------------------------------------------------------- /Doc/Manual/CCache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/CCache.html -------------------------------------------------------------------------------- /Doc/Manual/CSharp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/CSharp.html -------------------------------------------------------------------------------- /Doc/Manual/Delphi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Delphi.html -------------------------------------------------------------------------------- /Doc/Manual/Go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Go.html -------------------------------------------------------------------------------- /Doc/Manual/Guile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Guile.html -------------------------------------------------------------------------------- /Doc/Manual/Java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Java.html -------------------------------------------------------------------------------- /Doc/Manual/Lisp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Lisp.html -------------------------------------------------------------------------------- /Doc/Manual/Lua.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Lua.html -------------------------------------------------------------------------------- /Doc/Manual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Makefile -------------------------------------------------------------------------------- /Doc/Manual/Ocaml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Ocaml.html -------------------------------------------------------------------------------- /Doc/Manual/Octave.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Octave.html -------------------------------------------------------------------------------- /Doc/Manual/Perl5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Perl5.html -------------------------------------------------------------------------------- /Doc/Manual/Php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Php.html -------------------------------------------------------------------------------- /Doc/Manual/Pike.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Pike.html -------------------------------------------------------------------------------- /Doc/Manual/Python.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Python.html -------------------------------------------------------------------------------- /Doc/Manual/R.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/R.html -------------------------------------------------------------------------------- /Doc/Manual/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/README -------------------------------------------------------------------------------- /Doc/Manual/Ruby.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Ruby.html -------------------------------------------------------------------------------- /Doc/Manual/SWIG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/SWIG.html -------------------------------------------------------------------------------- /Doc/Manual/Scilab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Scilab.html -------------------------------------------------------------------------------- /Doc/Manual/Tcl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/Tcl.html -------------------------------------------------------------------------------- /Doc/Manual/ch2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/ch2.1.png -------------------------------------------------------------------------------- /Doc/Manual/chapters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/chapters -------------------------------------------------------------------------------- /Doc/Manual/fixstyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/fixstyle.py -------------------------------------------------------------------------------- /Doc/Manual/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/index.html -------------------------------------------------------------------------------- /Doc/Manual/makechap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/makechap.py -------------------------------------------------------------------------------- /Doc/Manual/maketoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/maketoc.py -------------------------------------------------------------------------------- /Doc/Manual/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/style.css -------------------------------------------------------------------------------- /Doc/Manual/swig16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/Manual/swig16.png -------------------------------------------------------------------------------- /Doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Doc/README -------------------------------------------------------------------------------- /Examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Examples/Makefile -------------------------------------------------------------------------------- /Examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Examples/Makefile.in -------------------------------------------------------------------------------- /Examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/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 ../example.mk 2 | -------------------------------------------------------------------------------- /Examples/d/check.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Examples/d/check.list -------------------------------------------------------------------------------- /Examples/d/class/Makefile: -------------------------------------------------------------------------------- 1 | include ../example.mk 2 | -------------------------------------------------------------------------------- /Examples/d/constants/Makefile: -------------------------------------------------------------------------------- 1 | include ../example.mk 2 | -------------------------------------------------------------------------------- /Examples/d/enum/Makefile: -------------------------------------------------------------------------------- 1 | include ../example.mk 2 | -------------------------------------------------------------------------------- /Examples/d/example.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Examples/d/example.mk -------------------------------------------------------------------------------- /Examples/d/extend/Makefile: -------------------------------------------------------------------------------- 1 | include ../example.mk 2 | -------------------------------------------------------------------------------- /Examples/d/funcptr/Makefile: -------------------------------------------------------------------------------- 1 | include ../example.mk 2 | -------------------------------------------------------------------------------- /Examples/d/simple/Makefile: -------------------------------------------------------------------------------- 1 | include ../example.mk 2 | -------------------------------------------------------------------------------- /Examples/d/variables/Makefile: -------------------------------------------------------------------------------- 1 | include ../example.mk 2 | -------------------------------------------------------------------------------- /Examples/delphi.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Examples/delphi.rar -------------------------------------------------------------------------------- /Examples/go/check.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Examples/go/check.list -------------------------------------------------------------------------------- /Examples/go/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Examples/go/index.html -------------------------------------------------------------------------------- /Examples/guile/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Examples/guile/README -------------------------------------------------------------------------------- /Examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Examples/index.html -------------------------------------------------------------------------------- /Examples/javascript/class/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/javascript/constant/Makefile: -------------------------------------------------------------------------------- 1 | SRCS = 2 | 3 | include $(SRCDIR)../example.mk 4 | -------------------------------------------------------------------------------- /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 | SRCS = 2 | 3 | include $(SRCDIR)../example.mk 4 | -------------------------------------------------------------------------------- /Examples/javascript/functor/example.js: -------------------------------------------------------------------------------- 1 | module.exports = require("build/Release/example"); 2 | -------------------------------------------------------------------------------- /Examples/javascript/nspace/Makefile: -------------------------------------------------------------------------------- 1 | SRCS = 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 | SRCS = 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 | SRCS = 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 | SRCS = 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/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Examples/lua/lua.c -------------------------------------------------------------------------------- /Examples/mzscheme/check.list: -------------------------------------------------------------------------------- 1 | # see top-level Makefile.in 2 | multimap 3 | simple 4 | std_vector 5 | -------------------------------------------------------------------------------- /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/inline/README: -------------------------------------------------------------------------------- 1 | This example requires the Inline::SWIG package. 2 | 3 | -------------------------------------------------------------------------------- /Examples/perl5/xmlstring/example.cxx: -------------------------------------------------------------------------------- 1 | #include "example.h" 2 | -------------------------------------------------------------------------------- /Examples/php/pragmas/runme.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /Examples/php5/pragmas/runme.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /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/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_name.i: -------------------------------------------------------------------------------- 1 | %module xxx 2 | 3 | %name() int foo; 4 | 5 | -------------------------------------------------------------------------------- /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_extra_brackets.stderr: -------------------------------------------------------------------------------- 1 | cpp_extra_brackets.i:5: Error: Unexpected ')'. 2 | -------------------------------------------------------------------------------- /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/cpp_template_repeat.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/test-suite/errors/cpp_using_type_aliasing.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 test 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.list: -------------------------------------------------------------------------------- 1 | mod_a 2 | mod_b 3 | -------------------------------------------------------------------------------- /Examples/test-suite/multi_import_c.i: -------------------------------------------------------------------------------- 1 | class XXX 2 | { 3 | public: 4 | int testx(); 5 | }; 6 | -------------------------------------------------------------------------------- /Examples/test-suite/octave/empty_c_runme.m: -------------------------------------------------------------------------------- 1 | empty_c 2 | 3 | -------------------------------------------------------------------------------- /Examples/test-suite/octave/empty_runme.m: -------------------------------------------------------------------------------- 1 | empty 2 | 3 | -------------------------------------------------------------------------------- /Examples/test-suite/octave/null_pointer_runme.m: -------------------------------------------------------------------------------- 1 | null_pointer; 2 | 3 | assert(func([])); 4 | -------------------------------------------------------------------------------- /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/octave/template_static_runme.m: -------------------------------------------------------------------------------- 1 | template_static 2 | 3 | Foo_bar_double(1); 4 | -------------------------------------------------------------------------------- /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/xml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Examples/xml/Makefile -------------------------------------------------------------------------------- /Examples/xml/error.i: -------------------------------------------------------------------------------- 1 | %module error 2 | enum { RED=10, GREEN, BLUE }; -------------------------------------------------------------------------------- /Examples/xml/example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Examples/xml/example.h -------------------------------------------------------------------------------- /Examples/xml/example.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Examples/xml/example.i -------------------------------------------------------------------------------- /Examples/xml/gnarly.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Examples/xml/gnarly.i -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/LICENSE-GPL -------------------------------------------------------------------------------- /LICENSE-UNIVERSITIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/LICENSE-UNIVERSITIES -------------------------------------------------------------------------------- /Lib/allkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/allkw.swg -------------------------------------------------------------------------------- /Lib/attribute.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/attribute.i -------------------------------------------------------------------------------- /Lib/carrays.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/carrays.i -------------------------------------------------------------------------------- /Lib/cdata.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/cdata.i -------------------------------------------------------------------------------- /Lib/cffi/cffi.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/cffi/cffi.swg -------------------------------------------------------------------------------- /Lib/chicken/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/chicken/typemaps.i -------------------------------------------------------------------------------- /Lib/clisp/clisp.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/clisp/clisp.swg -------------------------------------------------------------------------------- /Lib/cmalloc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/cmalloc.i -------------------------------------------------------------------------------- /Lib/constraints.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/constraints.i -------------------------------------------------------------------------------- /Lib/cpointer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/cpointer.i -------------------------------------------------------------------------------- /Lib/csharp/csharp.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/csharp/csharp.swg -------------------------------------------------------------------------------- /Lib/csharp/enums.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/csharp/enums.swg -------------------------------------------------------------------------------- /Lib/csharp/std_array.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/csharp/std_array.i -------------------------------------------------------------------------------- /Lib/csharp/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/csharp/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/csharp/std_map.i -------------------------------------------------------------------------------- /Lib/csharp/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/csharp/std_pair.i -------------------------------------------------------------------------------- /Lib/csharp/std_shared_ptr.i: -------------------------------------------------------------------------------- 1 | #define SWIG_SHARED_PTR_NAMESPACE std 2 | %include 3 | -------------------------------------------------------------------------------- /Lib/csharp/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/csharp/stl.i -------------------------------------------------------------------------------- /Lib/csharp/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/csharp/typemaps.i -------------------------------------------------------------------------------- /Lib/csharp/wchar.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/csharp/wchar.i -------------------------------------------------------------------------------- /Lib/cstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/cstring.i -------------------------------------------------------------------------------- /Lib/cwstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/cwstring.i -------------------------------------------------------------------------------- /Lib/d/carrays.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/carrays.i -------------------------------------------------------------------------------- /Lib/d/cpointer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/cpointer.i -------------------------------------------------------------------------------- /Lib/d/d.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/d.swg -------------------------------------------------------------------------------- /Lib/d/dclassgen.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/dclassgen.swg -------------------------------------------------------------------------------- /Lib/d/ddirectives.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/ddirectives.swg -------------------------------------------------------------------------------- /Lib/d/denums.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/denums.swg -------------------------------------------------------------------------------- /Lib/d/dexception.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/dexception.swg -------------------------------------------------------------------------------- /Lib/d/dhead.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/dhead.swg -------------------------------------------------------------------------------- /Lib/d/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/director.swg -------------------------------------------------------------------------------- /Lib/d/dkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/dkw.swg -------------------------------------------------------------------------------- /Lib/d/doperators.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/doperators.swg -------------------------------------------------------------------------------- /Lib/d/dprimitives.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/dprimitives.swg -------------------------------------------------------------------------------- /Lib/d/dstrings.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/dstrings.swg -------------------------------------------------------------------------------- /Lib/d/dswigtype.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/dswigtype.swg -------------------------------------------------------------------------------- /Lib/d/dvoid.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/dvoid.swg -------------------------------------------------------------------------------- /Lib/d/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/std_common.i -------------------------------------------------------------------------------- /Lib/d/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/d/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/std_except.i -------------------------------------------------------------------------------- /Lib/d/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/std_map.i -------------------------------------------------------------------------------- /Lib/d/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/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/FMXExpress/swig-delphi/HEAD/Lib/d/std_string.i -------------------------------------------------------------------------------- /Lib/d/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/std_vector.i -------------------------------------------------------------------------------- /Lib/d/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/stl.i -------------------------------------------------------------------------------- /Lib/d/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/d/typemaps.i -------------------------------------------------------------------------------- /Lib/delphi/delphi.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/delphi/delphi.swg -------------------------------------------------------------------------------- /Lib/delphi/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/delphi/typemaps.i -------------------------------------------------------------------------------- /Lib/exception.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/exception.i -------------------------------------------------------------------------------- /Lib/gcj/cni.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/gcj/cni.i -------------------------------------------------------------------------------- /Lib/gcj/cni.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/gcj/cni.swg -------------------------------------------------------------------------------- /Lib/gcj/javaprims.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/gcj/javaprims.i -------------------------------------------------------------------------------- /Lib/go/cdata.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/go/cdata.i -------------------------------------------------------------------------------- /Lib/go/exception.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/go/exception.i -------------------------------------------------------------------------------- /Lib/go/go.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/go/go.swg -------------------------------------------------------------------------------- /Lib/go/gokw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/go/gokw.swg -------------------------------------------------------------------------------- /Lib/go/goruntime.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/go/goruntime.swg -------------------------------------------------------------------------------- /Lib/go/gostring.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/go/gostring.swg -------------------------------------------------------------------------------- /Lib/go/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/go/std_common.i -------------------------------------------------------------------------------- /Lib/go/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/go/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/go/std_except.i -------------------------------------------------------------------------------- /Lib/go/std_list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/go/std_list.i -------------------------------------------------------------------------------- /Lib/go/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/go/std_map.i -------------------------------------------------------------------------------- /Lib/go/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/go/std_pair.i -------------------------------------------------------------------------------- /Lib/go/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/go/std_string.i -------------------------------------------------------------------------------- /Lib/go/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/go/std_vector.i -------------------------------------------------------------------------------- /Lib/go/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/go/stl.i -------------------------------------------------------------------------------- /Lib/go/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/go/typemaps.i -------------------------------------------------------------------------------- /Lib/guile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/guile/Makefile -------------------------------------------------------------------------------- /Lib/guile/common.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/guile/common.scm -------------------------------------------------------------------------------- /Lib/guile/cplusplus.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/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/FMXExpress/swig-delphi/HEAD/Lib/guile/guile.i -------------------------------------------------------------------------------- /Lib/guile/guilemain.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/guile/guilemain.i -------------------------------------------------------------------------------- /Lib/guile/ports.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/guile/ports.i -------------------------------------------------------------------------------- /Lib/guile/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/guile/std_common.i -------------------------------------------------------------------------------- /Lib/guile/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/guile/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/guile/std_except.i -------------------------------------------------------------------------------- /Lib/guile/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/guile/std_map.i -------------------------------------------------------------------------------- /Lib/guile/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/guile/std_pair.i -------------------------------------------------------------------------------- /Lib/guile/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/guile/std_string.i -------------------------------------------------------------------------------- /Lib/guile/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/guile/std_vector.i -------------------------------------------------------------------------------- /Lib/guile/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/guile/stl.i -------------------------------------------------------------------------------- /Lib/guile/swigrun.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/guile/swigrun.i -------------------------------------------------------------------------------- /Lib/guile/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/guile/typemaps.i -------------------------------------------------------------------------------- /Lib/intrusive_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/intrusive_ptr.i -------------------------------------------------------------------------------- /Lib/inttypes.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/inttypes.i -------------------------------------------------------------------------------- /Lib/java/arrays_java.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/arrays_java.i -------------------------------------------------------------------------------- /Lib/java/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/director.swg -------------------------------------------------------------------------------- /Lib/java/enums.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/enums.swg -------------------------------------------------------------------------------- /Lib/java/java.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/java.swg -------------------------------------------------------------------------------- /Lib/java/javahead.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/javahead.swg -------------------------------------------------------------------------------- /Lib/java/javakw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/javakw.swg -------------------------------------------------------------------------------- /Lib/java/std_array.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/std_array.i -------------------------------------------------------------------------------- /Lib/java/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/std_common.i -------------------------------------------------------------------------------- /Lib/java/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/java/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/std_except.i -------------------------------------------------------------------------------- /Lib/java/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/std_map.i -------------------------------------------------------------------------------- /Lib/java/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/std_pair.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/FMXExpress/swig-delphi/HEAD/Lib/java/std_string.i -------------------------------------------------------------------------------- /Lib/java/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/std_vector.i -------------------------------------------------------------------------------- /Lib/java/std_wstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/std_wstring.i -------------------------------------------------------------------------------- /Lib/java/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/stl.i -------------------------------------------------------------------------------- /Lib/java/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/typemaps.i -------------------------------------------------------------------------------- /Lib/java/various.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/java/various.i -------------------------------------------------------------------------------- /Lib/javascript/jsc/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/jsc/exception.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/v8/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/javascript/v8/exception.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/linkruntime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/linkruntime.c -------------------------------------------------------------------------------- /Lib/lua/_std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/_std_common.i -------------------------------------------------------------------------------- /Lib/lua/carrays.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/carrays.i -------------------------------------------------------------------------------- /Lib/lua/factory.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/factory.i -------------------------------------------------------------------------------- /Lib/lua/lua.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/lua.swg -------------------------------------------------------------------------------- /Lib/lua/lua_fnptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/lua_fnptr.i -------------------------------------------------------------------------------- /Lib/lua/luakw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/luakw.swg -------------------------------------------------------------------------------- /Lib/lua/luarun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/luarun.swg -------------------------------------------------------------------------------- /Lib/lua/luaruntime.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/luaruntime.swg -------------------------------------------------------------------------------- /Lib/lua/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/std_common.i -------------------------------------------------------------------------------- /Lib/lua/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/lua/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/std_except.i -------------------------------------------------------------------------------- /Lib/lua/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/std_map.i -------------------------------------------------------------------------------- /Lib/lua/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/std_pair.i -------------------------------------------------------------------------------- /Lib/lua/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/std_string.i -------------------------------------------------------------------------------- /Lib/lua/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/std_vector.i -------------------------------------------------------------------------------- /Lib/lua/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/stl.i -------------------------------------------------------------------------------- /Lib/lua/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/typemaps.i -------------------------------------------------------------------------------- /Lib/lua/wchar.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/lua/wchar.i -------------------------------------------------------------------------------- /Lib/math.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/math.i -------------------------------------------------------------------------------- /Lib/modula3/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/modula3/typemaps.i -------------------------------------------------------------------------------- /Lib/mzscheme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/mzscheme/Makefile -------------------------------------------------------------------------------- /Lib/mzscheme/mzrun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/mzscheme/mzrun.swg -------------------------------------------------------------------------------- /Lib/mzscheme/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/mzscheme/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/mzscheme/std_map.i -------------------------------------------------------------------------------- /Lib/mzscheme/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/mzscheme/stl.i -------------------------------------------------------------------------------- /Lib/ocaml/carray.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/carray.i -------------------------------------------------------------------------------- /Lib/ocaml/class.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/class.swg -------------------------------------------------------------------------------- /Lib/ocaml/cstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/cstring.i -------------------------------------------------------------------------------- /Lib/ocaml/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/director.swg -------------------------------------------------------------------------------- /Lib/ocaml/ocaml.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/ocaml.i -------------------------------------------------------------------------------- /Lib/ocaml/ocaml.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/ocaml.swg -------------------------------------------------------------------------------- /Lib/ocaml/ocamldec.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/ocamldec.swg -------------------------------------------------------------------------------- /Lib/ocaml/ocamlkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/ocamlkw.swg -------------------------------------------------------------------------------- /Lib/ocaml/std_list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/std_list.i -------------------------------------------------------------------------------- /Lib/ocaml/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/std_map.i -------------------------------------------------------------------------------- /Lib/ocaml/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/std_pair.i -------------------------------------------------------------------------------- /Lib/ocaml/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/stl.i -------------------------------------------------------------------------------- /Lib/ocaml/swig.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/swig.ml -------------------------------------------------------------------------------- /Lib/ocaml/swig.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/swig.mli -------------------------------------------------------------------------------- /Lib/ocaml/swigp4.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/swigp4.ml -------------------------------------------------------------------------------- /Lib/ocaml/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ocaml/typemaps.i -------------------------------------------------------------------------------- /Lib/octave/attribute.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/carrays.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/octave/carrays.i -------------------------------------------------------------------------------- /Lib/octave/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/octfragments.swg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Lib/octave/std_alloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/std_carray.i: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/octave/std_char_traits.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/octave/std_map.i -------------------------------------------------------------------------------- /Lib/octave/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/octave/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/octave/stl.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/cni.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/perl5/cni.i -------------------------------------------------------------------------------- /Lib/perl5/cpointer.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/perl5/cstring.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/perl5/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/perl5/jstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/perl5/jstring.i -------------------------------------------------------------------------------- /Lib/perl5/noembed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/perl5/noembed.h -------------------------------------------------------------------------------- /Lib/perl5/perl5.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/perl5/perl5.swg -------------------------------------------------------------------------------- /Lib/perl5/perlkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/perl5/perlkw.swg -------------------------------------------------------------------------------- /Lib/perl5/perlmacros.swg: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | -------------------------------------------------------------------------------- /Lib/perl5/perlmain.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/perl5/perlmain.i -------------------------------------------------------------------------------- /Lib/perl5/perluserdir.swg: -------------------------------------------------------------------------------- 1 | #define %perlcode %insert("perl") 2 | 3 | -------------------------------------------------------------------------------- /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/FMXExpress/swig-delphi/HEAD/Lib/perl5/std_list.i -------------------------------------------------------------------------------- /Lib/perl5/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/perl5/std_map.i -------------------------------------------------------------------------------- /Lib/perl5/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/perl5/std_pair.i -------------------------------------------------------------------------------- /Lib/perl5/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/perl5/stl.i -------------------------------------------------------------------------------- /Lib/perl5/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/perl5/typemaps.i -------------------------------------------------------------------------------- /Lib/php/const.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/const.i -------------------------------------------------------------------------------- /Lib/php/director.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/director.swg -------------------------------------------------------------------------------- /Lib/php/factory.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/factory.i -------------------------------------------------------------------------------- /Lib/php/globalvar.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/globalvar.i -------------------------------------------------------------------------------- /Lib/php/php.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/php.swg -------------------------------------------------------------------------------- /Lib/php/phpinit.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/phpinit.swg -------------------------------------------------------------------------------- /Lib/php/phpkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/phpkw.swg -------------------------------------------------------------------------------- /Lib/php/phprun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/phprun.swg -------------------------------------------------------------------------------- /Lib/php/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/std_common.i -------------------------------------------------------------------------------- /Lib/php/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/php/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/std_map.i -------------------------------------------------------------------------------- /Lib/php/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/std_pair.i -------------------------------------------------------------------------------- /Lib/php/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/std_string.i -------------------------------------------------------------------------------- /Lib/php/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/std_vector.i -------------------------------------------------------------------------------- /Lib/php/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/stl.i -------------------------------------------------------------------------------- /Lib/php/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/typemaps.i -------------------------------------------------------------------------------- /Lib/php/utils.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php/utils.i -------------------------------------------------------------------------------- /Lib/php5/const.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php5/const.i -------------------------------------------------------------------------------- /Lib/php5/factory.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php5/factory.i -------------------------------------------------------------------------------- /Lib/php5/globalvar.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php5/globalvar.i -------------------------------------------------------------------------------- /Lib/php5/php.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php5/php.swg -------------------------------------------------------------------------------- /Lib/php5/phpinit.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php5/phpinit.swg -------------------------------------------------------------------------------- /Lib/php5/phpkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php5/phpkw.swg -------------------------------------------------------------------------------- /Lib/php5/phprun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php5/phprun.swg -------------------------------------------------------------------------------- /Lib/php5/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/php5/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php5/std_map.i -------------------------------------------------------------------------------- /Lib/php5/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php5/std_pair.i -------------------------------------------------------------------------------- /Lib/php5/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php5/stl.i -------------------------------------------------------------------------------- /Lib/php5/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php5/typemaps.i -------------------------------------------------------------------------------- /Lib/php5/utils.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/php5/utils.i -------------------------------------------------------------------------------- /Lib/pike/pike.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/pike/pike.swg -------------------------------------------------------------------------------- /Lib/pike/pikekw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/pike/pikekw.swg -------------------------------------------------------------------------------- /Lib/pike/pikerun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/pike/pikerun.swg -------------------------------------------------------------------------------- /Lib/pointer.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/pointer.i -------------------------------------------------------------------------------- /Lib/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/python/README -------------------------------------------------------------------------------- /Lib/python/attribute.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/carrays.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/python/carrays.i -------------------------------------------------------------------------------- /Lib/python/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/cni.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/python/cni.i -------------------------------------------------------------------------------- /Lib/python/complex.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/python/complex.i -------------------------------------------------------------------------------- /Lib/python/cpointer.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/cstring.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/embed.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/python/embed.i -------------------------------------------------------------------------------- /Lib/python/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/file.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/python/file.i -------------------------------------------------------------------------------- /Lib/python/jstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/python/jstring.i -------------------------------------------------------------------------------- /Lib/python/pyabc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/python/pyabc.i -------------------------------------------------------------------------------- /Lib/python/pyapi.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/python/pyapi.swg -------------------------------------------------------------------------------- /Lib/python/pymacros.swg: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Lib/python/pyrun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/python/pyrun.swg -------------------------------------------------------------------------------- /Lib/python/std_alloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/std_char_traits.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/std_ios.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/python/std_ios.i -------------------------------------------------------------------------------- /Lib/python/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/python/std_map.i -------------------------------------------------------------------------------- /Lib/python/std_set.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/python/std_set.i -------------------------------------------------------------------------------- /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_wios.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/std_wsstream.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/std_wstreambuf.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/python/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/python/stl.i -------------------------------------------------------------------------------- /Lib/python/wchar.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/python/wchar.i -------------------------------------------------------------------------------- /Lib/r/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/r/exception.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/r/exception.i -------------------------------------------------------------------------------- /Lib/r/r.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/r/r.swg -------------------------------------------------------------------------------- /Lib/r/rcontainer.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/r/rcontainer.swg -------------------------------------------------------------------------------- /Lib/r/rfragments.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/r/rfragments.swg -------------------------------------------------------------------------------- /Lib/r/rkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/r/rkw.swg -------------------------------------------------------------------------------- /Lib/r/ropers.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/r/ropers.swg -------------------------------------------------------------------------------- /Lib/r/rrun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/r/rrun.swg -------------------------------------------------------------------------------- /Lib/r/rstdcommon.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/r/rstdcommon.swg -------------------------------------------------------------------------------- /Lib/r/rtype.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/r/rtype.swg -------------------------------------------------------------------------------- /Lib/r/srun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/r/srun.swg -------------------------------------------------------------------------------- /Lib/r/std_alloc.i: -------------------------------------------------------------------------------- 1 | %include -------------------------------------------------------------------------------- /Lib/r/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/r/std_common.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/FMXExpress/swig-delphi/HEAD/Lib/r/std_list.i -------------------------------------------------------------------------------- /Lib/r/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/r/std_pair.i -------------------------------------------------------------------------------- /Lib/r/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/r/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/r/std_vector.i -------------------------------------------------------------------------------- /Lib/r/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/r/stl.i -------------------------------------------------------------------------------- /Lib/r/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/r/typemaps.i -------------------------------------------------------------------------------- /Lib/ruby/argcargv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/argcargv.i -------------------------------------------------------------------------------- /Lib/ruby/attribute.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/carrays.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/carrays.i -------------------------------------------------------------------------------- /Lib/ruby/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/cni.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/cni.i -------------------------------------------------------------------------------- /Lib/ruby/cpointer.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/cstring.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/embed.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/embed.i -------------------------------------------------------------------------------- /Lib/ruby/exception.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/exception.i -------------------------------------------------------------------------------- /Lib/ruby/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/extconf.rb -------------------------------------------------------------------------------- /Lib/ruby/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/file.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/file.i -------------------------------------------------------------------------------- /Lib/ruby/jstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/jstring.i -------------------------------------------------------------------------------- /Lib/ruby/ruby.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/ruby.swg -------------------------------------------------------------------------------- /Lib/ruby/rubyapi.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/rubyapi.swg -------------------------------------------------------------------------------- /Lib/ruby/rubydef.swg: -------------------------------------------------------------------------------- 1 | /* empty file added for backward comp. */ 2 | -------------------------------------------------------------------------------- /Lib/ruby/rubyinit.swg: -------------------------------------------------------------------------------- 1 | %insert(initbeforefunc) "swiginit.swg" 2 | -------------------------------------------------------------------------------- /Lib/ruby/rubykw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/rubykw.swg -------------------------------------------------------------------------------- /Lib/ruby/rubyrun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/rubyrun.swg -------------------------------------------------------------------------------- /Lib/ruby/std_alloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/std_array.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/std_array.i -------------------------------------------------------------------------------- /Lib/ruby/std_char_traits.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/std_deque.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/std_deque.i -------------------------------------------------------------------------------- /Lib/ruby/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/std_ios.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/std_ios.i -------------------------------------------------------------------------------- /Lib/ruby/std_list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/std_list.i -------------------------------------------------------------------------------- /Lib/ruby/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/std_map.i -------------------------------------------------------------------------------- /Lib/ruby/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/std_pair.i -------------------------------------------------------------------------------- /Lib/ruby/std_queue.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/std_queue.i -------------------------------------------------------------------------------- /Lib/ruby/std_set.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/std_set.i -------------------------------------------------------------------------------- /Lib/ruby/std_sstream.i: -------------------------------------------------------------------------------- 1 | 2 | %include 3 | -------------------------------------------------------------------------------- /Lib/ruby/std_stack.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/std_stack.i -------------------------------------------------------------------------------- /Lib/ruby/std_streambuf.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/ruby/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/stl.i -------------------------------------------------------------------------------- /Lib/ruby/timeval.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/timeval.i -------------------------------------------------------------------------------- /Lib/ruby/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/ruby/typemaps.i -------------------------------------------------------------------------------- /Lib/runtime.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/runtime.swg -------------------------------------------------------------------------------- /Lib/scilab/carrays.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/scilab/carrays.i -------------------------------------------------------------------------------- /Lib/scilab/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/scilab/cpointer.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/scilab/matrix.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/scilab/matrix.i -------------------------------------------------------------------------------- /Lib/scilab/std_alloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | -------------------------------------------------------------------------------- /Lib/scilab/std_char_traits.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/scilab/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/scilab/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/scilab/std_map.i -------------------------------------------------------------------------------- /Lib/scilab/std_set.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/scilab/std_set.i -------------------------------------------------------------------------------- /Lib/scilab/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/scilab/stl.i -------------------------------------------------------------------------------- /Lib/shared_ptr.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/shared_ptr.i -------------------------------------------------------------------------------- /Lib/std/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/README -------------------------------------------------------------------------------- /Lib/std/_std_deque.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/_std_deque.i -------------------------------------------------------------------------------- /Lib/std/std_alloc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/std_alloc.i -------------------------------------------------------------------------------- /Lib/std/std_array.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/std_array.i -------------------------------------------------------------------------------- /Lib/std/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/std_common.i -------------------------------------------------------------------------------- /Lib/std/std_deque.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/std_deque.i -------------------------------------------------------------------------------- /Lib/std/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/std_except.i -------------------------------------------------------------------------------- /Lib/std/std_ios.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/std_ios.i -------------------------------------------------------------------------------- /Lib/std/std_list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/std_list.i -------------------------------------------------------------------------------- /Lib/std/std_map.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/std_map.i -------------------------------------------------------------------------------- /Lib/std/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/std_pair.i -------------------------------------------------------------------------------- /Lib/std/std_queue.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/std_queue.i -------------------------------------------------------------------------------- /Lib/std/std_set.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/std_set.i -------------------------------------------------------------------------------- /Lib/std/std_stack.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/std_stack.i -------------------------------------------------------------------------------- /Lib/std/std_string.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/std_string.i -------------------------------------------------------------------------------- /Lib/std/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/std_vector.i -------------------------------------------------------------------------------- /Lib/std/std_wios.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std/std_wios.i -------------------------------------------------------------------------------- /Lib/std_except.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/std_except.i -------------------------------------------------------------------------------- /Lib/stdint.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/stdint.i -------------------------------------------------------------------------------- /Lib/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/stl.i -------------------------------------------------------------------------------- /Lib/swig.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/swig.swg -------------------------------------------------------------------------------- /Lib/swigarch.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/swigarch.i -------------------------------------------------------------------------------- /Lib/swigerrors.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/swigerrors.swg -------------------------------------------------------------------------------- /Lib/swiginit.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/swiginit.swg -------------------------------------------------------------------------------- /Lib/swiglabels.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/swiglabels.swg -------------------------------------------------------------------------------- /Lib/swigrun.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/swigrun.i -------------------------------------------------------------------------------- /Lib/swigrun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/swigrun.swg -------------------------------------------------------------------------------- /Lib/swigwarn.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/swigwarn.swg -------------------------------------------------------------------------------- /Lib/swigwarnings.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/swigwarnings.swg -------------------------------------------------------------------------------- /Lib/tcl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/Makefile.in -------------------------------------------------------------------------------- /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/cni.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/cni.i -------------------------------------------------------------------------------- /Lib/tcl/cpointer.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/tcl/cstring.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/tcl/cwstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/cwstring.i -------------------------------------------------------------------------------- /Lib/tcl/exception.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/exception.i -------------------------------------------------------------------------------- /Lib/tcl/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /Lib/tcl/jstring.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/jstring.i -------------------------------------------------------------------------------- /Lib/tcl/mactkinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/mactkinit.c -------------------------------------------------------------------------------- /Lib/tcl/std_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/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/FMXExpress/swig-delphi/HEAD/Lib/tcl/std_map.i -------------------------------------------------------------------------------- /Lib/tcl/std_pair.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/std_pair.i -------------------------------------------------------------------------------- /Lib/tcl/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | -------------------------------------------------------------------------------- /Lib/tcl/std_vector.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/std_vector.i -------------------------------------------------------------------------------- /Lib/tcl/stl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/stl.i -------------------------------------------------------------------------------- /Lib/tcl/tcl8.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/tcl8.swg -------------------------------------------------------------------------------- /Lib/tcl/tclapi.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/tclapi.swg -------------------------------------------------------------------------------- /Lib/tcl/tclinit.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/tclinit.swg -------------------------------------------------------------------------------- /Lib/tcl/tclinterp.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/tclinterp.i -------------------------------------------------------------------------------- /Lib/tcl/tclkw.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/tclkw.swg -------------------------------------------------------------------------------- /Lib/tcl/tclmacros.swg: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Lib/tcl/tclopers.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/tclopers.swg -------------------------------------------------------------------------------- /Lib/tcl/tclresult.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/tclresult.i -------------------------------------------------------------------------------- /Lib/tcl/tclrun.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/tclrun.swg -------------------------------------------------------------------------------- /Lib/tcl/tclsh.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/tclsh.i -------------------------------------------------------------------------------- /Lib/tcl/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/typemaps.i -------------------------------------------------------------------------------- /Lib/tcl/wish.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/tcl/wish.i -------------------------------------------------------------------------------- /Lib/typemaps/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/typemaps/README -------------------------------------------------------------------------------- /Lib/uffi/uffi.swg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/uffi/uffi.swg -------------------------------------------------------------------------------- /Lib/wchar.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/wchar.i -------------------------------------------------------------------------------- /Lib/windows.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/windows.i -------------------------------------------------------------------------------- /Lib/xml/typemaps.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Lib/xml/typemaps.i -------------------------------------------------------------------------------- /Lib/xml/xml.swg: -------------------------------------------------------------------------------- 1 | /* nothing special */ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/README -------------------------------------------------------------------------------- /RELEASENOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/RELEASENOTES -------------------------------------------------------------------------------- /Source/CParse/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/CParse/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/CParse/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/CParse/util.c -------------------------------------------------------------------------------- /Source/DOH/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DOH/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DOH/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/DOH/README -------------------------------------------------------------------------------- /Source/DOH/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/DOH/base.c -------------------------------------------------------------------------------- /Source/DOH/doh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/DOH/doh.h -------------------------------------------------------------------------------- /Source/DOH/dohint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/DOH/dohint.h -------------------------------------------------------------------------------- /Source/DOH/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/DOH/file.c -------------------------------------------------------------------------------- /Source/DOH/fio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/DOH/fio.c -------------------------------------------------------------------------------- /Source/DOH/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/DOH/hash.c -------------------------------------------------------------------------------- /Source/DOH/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/DOH/list.c -------------------------------------------------------------------------------- /Source/DOH/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/DOH/memory.c -------------------------------------------------------------------------------- /Source/DOH/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/DOH/string.c -------------------------------------------------------------------------------- /Source/DOH/void.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/DOH/void.c -------------------------------------------------------------------------------- /Source/Include/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for Source/Include/swigconfig.h 2 | -------------------------------------------------------------------------------- /Source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Makefile -------------------------------------------------------------------------------- /Source/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Makefile.am -------------------------------------------------------------------------------- /Source/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Makefile.in -------------------------------------------------------------------------------- /Source/Modules/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Modules/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Modules/d.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Modules/d.cxx -------------------------------------------------------------------------------- /Source/Modules/r.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Modules/r.cxx -------------------------------------------------------------------------------- /Source/Preprocessor/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Preprocessor/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/README -------------------------------------------------------------------------------- /Source/Swig/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Swig/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Swig/cwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Swig/cwrap.c -------------------------------------------------------------------------------- /Source/Swig/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Swig/error.c -------------------------------------------------------------------------------- /Source/Swig/extend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Swig/extend.c -------------------------------------------------------------------------------- /Source/Swig/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Swig/getopt.c -------------------------------------------------------------------------------- /Source/Swig/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Swig/misc.c -------------------------------------------------------------------------------- /Source/Swig/naming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Swig/naming.c -------------------------------------------------------------------------------- /Source/Swig/parms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Swig/parms.c -------------------------------------------------------------------------------- /Source/Swig/stype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Swig/stype.c -------------------------------------------------------------------------------- /Source/Swig/swig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Swig/swig.h -------------------------------------------------------------------------------- /Source/Swig/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Swig/symbol.c -------------------------------------------------------------------------------- /Source/Swig/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Source/Swig/tree.c -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/TODO -------------------------------------------------------------------------------- /Tools/brew-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/brew-install -------------------------------------------------------------------------------- /Tools/capitalize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/capitalize -------------------------------------------------------------------------------- /Tools/config/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/config/compile -------------------------------------------------------------------------------- /Tools/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/config/depcomp -------------------------------------------------------------------------------- /Tools/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/config/missing -------------------------------------------------------------------------------- /Tools/config/ylwrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/config/ylwrap -------------------------------------------------------------------------------- /Tools/convertpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/convertpath -------------------------------------------------------------------------------- /Tools/mkdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/mkdist.py -------------------------------------------------------------------------------- /Tools/mkrelease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/mkrelease.py -------------------------------------------------------------------------------- /Tools/mkwindows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/mkwindows.sh -------------------------------------------------------------------------------- /Tools/obs-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/obs-update -------------------------------------------------------------------------------- /Tools/pcre-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/pcre-build.sh -------------------------------------------------------------------------------- /Tools/setup.py.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/setup.py.tmpl -------------------------------------------------------------------------------- /Tools/swig.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/swig.gdb -------------------------------------------------------------------------------- /Tools/testflags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/testflags.py -------------------------------------------------------------------------------- /Tools/vcfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Tools/vcfilter -------------------------------------------------------------------------------- /Win/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/Win/README.txt -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/appveyor.yml -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/autogen.sh -------------------------------------------------------------------------------- /config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/config.status -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/configure.ac -------------------------------------------------------------------------------- /pcre-8.33.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre-8.33.tar.bz2 -------------------------------------------------------------------------------- /pcre/.deps/dftables.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_byte_order.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_chartables.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_compile.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_config.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_dfa_exec.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_exec.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_fullinfo.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_get.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_globals.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_jit_compile.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_maketables.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_newline.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_ord2utf16.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_refcount.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_string_utils.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_study.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_tables.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_ucd.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_utf16_utils.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_valid_utf16.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_version.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre16_xclass.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre16_la-pcre_chartables.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_byte_order.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_chartables.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_compile.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_config.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_dfa_exec.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_exec.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_fullinfo.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_get.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_globals.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_jit_compile.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_maketables.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_newline.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_ord2utf32.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_refcount.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_string_utils.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_study.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_tables.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_ucd.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_utf32_utils.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_valid_utf32.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_version.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre32_xclass.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/libpcre32_la-pcre_chartables.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/pcre_jit_test-pcre_jit_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/pcretest-pcre16_printint.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.deps/pcretest-pcre32_printint.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /pcre/.libs/libpcre.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/.libs/libpcre.a -------------------------------------------------------------------------------- /pcre/132html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/132html -------------------------------------------------------------------------------- /pcre/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/AUTHORS -------------------------------------------------------------------------------- /pcre/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/CMakeLists.txt -------------------------------------------------------------------------------- /pcre/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/COPYING -------------------------------------------------------------------------------- /pcre/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/ChangeLog -------------------------------------------------------------------------------- /pcre/CheckMan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/CheckMan -------------------------------------------------------------------------------- /pcre/CleanTxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/CleanTxt -------------------------------------------------------------------------------- /pcre/Detrail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/Detrail -------------------------------------------------------------------------------- /pcre/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/HACKING -------------------------------------------------------------------------------- /pcre/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/INSTALL -------------------------------------------------------------------------------- /pcre/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/LICENCE -------------------------------------------------------------------------------- /pcre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/Makefile -------------------------------------------------------------------------------- /pcre/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/Makefile.am -------------------------------------------------------------------------------- /pcre/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/Makefile.in -------------------------------------------------------------------------------- /pcre/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/NEWS -------------------------------------------------------------------------------- /pcre/NON-UNIX-USE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/NON-UNIX-USE -------------------------------------------------------------------------------- /pcre/PrepareRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/PrepareRelease -------------------------------------------------------------------------------- /pcre/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/README -------------------------------------------------------------------------------- /pcre/RunGrepTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/RunGrepTest -------------------------------------------------------------------------------- /pcre/RunTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/RunTest -------------------------------------------------------------------------------- /pcre/RunTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/RunTest.bat -------------------------------------------------------------------------------- /pcre/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/aclocal.m4 -------------------------------------------------------------------------------- /pcre/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/ar-lib -------------------------------------------------------------------------------- /pcre/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/compile -------------------------------------------------------------------------------- /pcre/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/config.guess -------------------------------------------------------------------------------- /pcre/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/config.h -------------------------------------------------------------------------------- /pcre/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/config.h.in -------------------------------------------------------------------------------- /pcre/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/config.status -------------------------------------------------------------------------------- /pcre/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/config.sub -------------------------------------------------------------------------------- /pcre/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/configure -------------------------------------------------------------------------------- /pcre/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/configure.ac -------------------------------------------------------------------------------- /pcre/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/depcomp -------------------------------------------------------------------------------- /pcre/dftables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/dftables.c -------------------------------------------------------------------------------- /pcre/doc/pcre.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/doc/pcre.3 -------------------------------------------------------------------------------- /pcre/doc/pcre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/doc/pcre.txt -------------------------------------------------------------------------------- /pcre/doc/pcre16.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/doc/pcre16.3 -------------------------------------------------------------------------------- /pcre/doc/pcre32.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/doc/pcre32.3 -------------------------------------------------------------------------------- /pcre/doc/pcre_exec.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/doc/pcre_exec.3 -------------------------------------------------------------------------------- /pcre/doc/pcreapi.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/doc/pcreapi.3 -------------------------------------------------------------------------------- /pcre/doc/pcrebuild.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/doc/pcrebuild.3 -------------------------------------------------------------------------------- /pcre/doc/pcrecpp.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/doc/pcrecpp.3 -------------------------------------------------------------------------------- /pcre/doc/pcredemo.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/doc/pcredemo.3 -------------------------------------------------------------------------------- /pcre/doc/pcregrep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/doc/pcregrep.1 -------------------------------------------------------------------------------- /pcre/doc/pcrejit.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/doc/pcrejit.3 -------------------------------------------------------------------------------- /pcre/doc/pcreposix.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/doc/pcreposix.3 -------------------------------------------------------------------------------- /pcre/doc/pcrestack.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/doc/pcrestack.3 -------------------------------------------------------------------------------- /pcre/doc/pcretest.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/doc/pcretest.1 -------------------------------------------------------------------------------- /pcre/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/install-sh -------------------------------------------------------------------------------- /pcre/libpcre.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/libpcre.la -------------------------------------------------------------------------------- /pcre/libpcre.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/libpcre.pc -------------------------------------------------------------------------------- /pcre/libpcre.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/libpcre.pc.in -------------------------------------------------------------------------------- /pcre/libpcre16.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/libpcre16.pc -------------------------------------------------------------------------------- /pcre/libpcre16.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/libpcre16.pc.in -------------------------------------------------------------------------------- /pcre/libpcre32.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/libpcre32.pc -------------------------------------------------------------------------------- /pcre/libpcre32.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/libpcre32.pc.in -------------------------------------------------------------------------------- /pcre/libpcrecpp.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/libpcrecpp.la -------------------------------------------------------------------------------- /pcre/libpcrecpp.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/libpcrecpp.pc -------------------------------------------------------------------------------- /pcre/libpcreposix.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/libpcreposix.la -------------------------------------------------------------------------------- /pcre/libpcreposix.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/libpcreposix.pc -------------------------------------------------------------------------------- /pcre/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/libtool -------------------------------------------------------------------------------- /pcre/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/ltmain.sh -------------------------------------------------------------------------------- /pcre/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/m4/libtool.m4 -------------------------------------------------------------------------------- /pcre/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/m4/ltoptions.m4 -------------------------------------------------------------------------------- /pcre/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/m4/ltsugar.m4 -------------------------------------------------------------------------------- /pcre/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/m4/ltversion.m4 -------------------------------------------------------------------------------- /pcre/makevp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/makevp.bat -------------------------------------------------------------------------------- /pcre/makevp_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/makevp_c.txt -------------------------------------------------------------------------------- /pcre/makevp_l.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/makevp_l.txt -------------------------------------------------------------------------------- /pcre/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/missing -------------------------------------------------------------------------------- /pcre/pcre-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre-config -------------------------------------------------------------------------------- /pcre/pcre-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre-config.in -------------------------------------------------------------------------------- /pcre/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre.h -------------------------------------------------------------------------------- /pcre/pcre.h.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre.h.generic -------------------------------------------------------------------------------- /pcre/pcre.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre.h.in -------------------------------------------------------------------------------- /pcre/pcre16_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre16_config.c -------------------------------------------------------------------------------- /pcre/pcre16_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre16_exec.c -------------------------------------------------------------------------------- /pcre/pcre16_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre16_get.c -------------------------------------------------------------------------------- /pcre/pcre16_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre16_study.c -------------------------------------------------------------------------------- /pcre/pcre16_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre16_tables.c -------------------------------------------------------------------------------- /pcre/pcre16_ucd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre16_ucd.c -------------------------------------------------------------------------------- /pcre/pcre16_xclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre16_xclass.c -------------------------------------------------------------------------------- /pcre/pcre32_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre32_config.c -------------------------------------------------------------------------------- /pcre/pcre32_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre32_exec.c -------------------------------------------------------------------------------- /pcre/pcre32_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre32_get.c -------------------------------------------------------------------------------- /pcre/pcre32_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre32_study.c -------------------------------------------------------------------------------- /pcre/pcre32_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre32_tables.c -------------------------------------------------------------------------------- /pcre/pcre32_ucd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre32_ucd.c -------------------------------------------------------------------------------- /pcre/pcre32_xclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre32_xclass.c -------------------------------------------------------------------------------- /pcre/pcre_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_compile.c -------------------------------------------------------------------------------- /pcre/pcre_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_config.c -------------------------------------------------------------------------------- /pcre/pcre_dfa_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_dfa_exec.c -------------------------------------------------------------------------------- /pcre/pcre_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_exec.c -------------------------------------------------------------------------------- /pcre/pcre_fullinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_fullinfo.c -------------------------------------------------------------------------------- /pcre/pcre_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_get.c -------------------------------------------------------------------------------- /pcre/pcre_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_globals.c -------------------------------------------------------------------------------- /pcre/pcre_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_internal.h -------------------------------------------------------------------------------- /pcre/pcre_jit_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_jit_test.c -------------------------------------------------------------------------------- /pcre/pcre_newline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_newline.c -------------------------------------------------------------------------------- /pcre/pcre_ord2utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_ord2utf8.c -------------------------------------------------------------------------------- /pcre/pcre_printint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_printint.c -------------------------------------------------------------------------------- /pcre/pcre_refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_refcount.c -------------------------------------------------------------------------------- /pcre/pcre_scanner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_scanner.cc -------------------------------------------------------------------------------- /pcre/pcre_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_scanner.h -------------------------------------------------------------------------------- /pcre/pcre_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_study.c -------------------------------------------------------------------------------- /pcre/pcre_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_tables.c -------------------------------------------------------------------------------- /pcre/pcre_ucd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_ucd.c -------------------------------------------------------------------------------- /pcre/pcre_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_version.c -------------------------------------------------------------------------------- /pcre/pcre_xclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcre_xclass.c -------------------------------------------------------------------------------- /pcre/pcrecpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcrecpp.cc -------------------------------------------------------------------------------- /pcre/pcrecpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcrecpp.h -------------------------------------------------------------------------------- /pcre/pcrecpparg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcrecpparg.h -------------------------------------------------------------------------------- /pcre/pcrecpparg.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcrecpparg.h.in -------------------------------------------------------------------------------- /pcre/pcredemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcredemo.c -------------------------------------------------------------------------------- /pcre/pcregexp.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcregexp.pas -------------------------------------------------------------------------------- /pcre/pcregrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcregrep.c -------------------------------------------------------------------------------- /pcre/pcreposix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcreposix.c -------------------------------------------------------------------------------- /pcre/pcreposix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcreposix.h -------------------------------------------------------------------------------- /pcre/pcretest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/pcretest.c -------------------------------------------------------------------------------- /pcre/perltest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/perltest.pl -------------------------------------------------------------------------------- /pcre/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /pcre/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/test-driver -------------------------------------------------------------------------------- /pcre/testdata/grepbinary: -------------------------------------------------------------------------------- 1 | The quick brown fx jumps over the lazy dog. 2 | -------------------------------------------------------------------------------- /pcre/testdata/greppatN4: -------------------------------------------------------------------------------- 1 | xxx 2 | jkl -------------------------------------------------------------------------------- /pcre/testdata/saved8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/testdata/saved8 -------------------------------------------------------------------------------- /pcre/ucp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/pcre/ucp.h -------------------------------------------------------------------------------- /preinst-swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/preinst-swig -------------------------------------------------------------------------------- /preinst-swig.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/preinst-swig.in -------------------------------------------------------------------------------- /share/swig/3.0.11/csharp/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/d/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/go/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/guile/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/java/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/javascript/jsc/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/javascript/jsc/exception.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/javascript/jsc/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/javascript/jsc/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/javascript/jsc/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/javascript/v8/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/javascript/v8/exception.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/javascript/v8/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/javascript/v8/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/javascript/v8/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/lua/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/mzscheme/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/octave/attribute.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/octave/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/octave/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/octave/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/octave/octfragments.swg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/octave/std_alloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/octave/std_carray.i: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /share/swig/3.0.11/octave/std_char_traits.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/octave/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/octave/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/perl5/attribute.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/perl5/carrays.i: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | -------------------------------------------------------------------------------- /share/swig/3.0.11/perl5/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/perl5/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/perl5/cpointer.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/perl5/cstring.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/perl5/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/perl5/perlmacros.swg: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | -------------------------------------------------------------------------------- /share/swig/3.0.11/perl5/perluserdir.swg: -------------------------------------------------------------------------------- 1 | #define %perlcode %insert("perl") 2 | 3 | -------------------------------------------------------------------------------- /share/swig/3.0.11/perl5/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/perl5/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/php/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/php5/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/attribute.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/cpointer.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/cstring.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/pymacros.swg: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/std_alloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/std_char_traits.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/std_sstream.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/std_streambuf.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/std_wios.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/std_wsstream.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/python/std_wstreambuf.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/r/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/r/std_alloc.i: -------------------------------------------------------------------------------- 1 | %include -------------------------------------------------------------------------------- /share/swig/3.0.11/r/std_deque.i: -------------------------------------------------------------------------------- 1 | %include -------------------------------------------------------------------------------- /share/swig/3.0.11/r/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/r/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/ruby/attribute.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/ruby/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/ruby/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/ruby/cpointer.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/ruby/cstring.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/ruby/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/ruby/rubydef.swg: -------------------------------------------------------------------------------- 1 | /* empty file added for backward comp. */ 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/ruby/rubyinit.swg: -------------------------------------------------------------------------------- 1 | %insert(initbeforefunc) "swiginit.swg" 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/ruby/std_alloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/ruby/std_char_traits.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/ruby/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/ruby/std_sstream.i: -------------------------------------------------------------------------------- 1 | 2 | %include 3 | -------------------------------------------------------------------------------- /share/swig/3.0.11/ruby/std_streambuf.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/scilab/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/scilab/cpointer.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/scilab/std_alloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | -------------------------------------------------------------------------------- /share/swig/3.0.11/scilab/std_char_traits.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/scilab/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/tcl/attribute.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/tcl/carrays.i: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /share/swig/3.0.11/tcl/cdata.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/tcl/cmalloc.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/tcl/cpointer.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/tcl/cstring.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/tcl/factory.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/tcl/std_deque.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/tcl/std_except.i: -------------------------------------------------------------------------------- 1 | %include 2 | -------------------------------------------------------------------------------- /share/swig/3.0.11/tcl/std_string.i: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | -------------------------------------------------------------------------------- /share/swig/3.0.11/tcl/tclmacros.swg: -------------------------------------------------------------------------------- 1 | %include 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /swig.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/swig.spec -------------------------------------------------------------------------------- /swig.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/swig.spec.in -------------------------------------------------------------------------------- /vms/aaareadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/vms/aaareadme.txt -------------------------------------------------------------------------------- /vms/build_end.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/vms/build_end.com -------------------------------------------------------------------------------- /vms/build_init.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/vms/build_init.com -------------------------------------------------------------------------------- /vms/build_swig.com: -------------------------------------------------------------------------------- 1 | $ @swig_root:[vms.scripts]build_all 2 | -------------------------------------------------------------------------------- /vms/genbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/vms/genbuild.py -------------------------------------------------------------------------------- /vms/logicals.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/vms/logicals.com -------------------------------------------------------------------------------- /vms/swigconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FMXExpress/swig-delphi/HEAD/vms/swigconfig.h --------------------------------------------------------------------------------