实例介绍
python emd算法 Earth Mover's Distance
【实例截图】
【核心代码】
python-emd-master
└── python-emd-master
├── Makefile
├── README.md
├── SolutionConverter_demo
│ ├── SolutionConverter.exe
│ ├── SolutionConverterLib.dll
│ └── StringValueAttribute.dll
├── _emd
│ ├── _emd
│ │ ├── Debug
│ │ │ ├── _emd.log
│ │ │ ├── _emd.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── _emd.lastbuildstate
│ │ │ │ ├── cl.command.1.tlog
│ │ │ │ └── unsuccessfulbuild
│ │ │ ├── vc120.idb
│ │ │ └── vc120.pdb
│ │ ├── Release
│ │ │ ├── _emd.log
│ │ │ ├── _emd.tlog
│ │ │ │ ├── _emd.lastbuildstate
│ │ │ │ ├── cl.command.1.tlog
│ │ │ │ ├── cl.read.1.tlog
│ │ │ │ ├── cl.write.1.tlog
│ │ │ │ ├── link.command.1.tlog
│ │ │ │ ├── link.read.1.tlog
│ │ │ │ ├── link.write.1.tlog
│ │ │ │ └── unsuccessfulbuild
│ │ │ ├── emd.obj
│ │ │ ├── emd_wrap.obj
│ │ │ └── vc120.pdb
│ │ ├── _emd.vcxproj
│ │ ├── _emd.vcxproj.filters
│ │ ├── _emd.vcxproj.user
│ │ └── x64
│ │ ├── Debug
│ │ │ ├── _emd.log
│ │ │ ├── _emd.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── _emd.lastbuildstate
│ │ │ │ ├── cl.command.1.tlog
│ │ │ │ ├── link-cvtres.read.1.tlog
│ │ │ │ ├── link-cvtres.write.1.tlog
│ │ │ │ ├── link-rc.read.1.tlog
│ │ │ │ ├── link-rc.write.1.tlog
│ │ │ │ ├── link.command.1.tlog
│ │ │ │ ├── link.read.1.tlog
│ │ │ │ ├── link.write.1.tlog
│ │ │ │ └── unsuccessfulbuild
│ │ │ ├── emd.obj
│ │ │ ├── emd_wrap.obj
│ │ │ ├── vc120.idb
│ │ │ └── vc120.pdb
│ │ └── Release
│ │ ├── _emd.Build.CppClean.log
│ │ └── _emd.log
│ ├── _emd.pyd
│ ├── _emd.sln
│ ├── _emd.v12.suo
│ ├── emd.c
│ ├── emd.h
│ ├── emd.i
│ ├── emd.py
│ ├── emd.pyc
│ ├── emd_wrap.c
│ ├── example1.py
│ ├── include
│ │ ├── Python-ast.h
│ │ ├── Python.h
│ │ ├── abstract.h
│ │ ├── asdl.h
│ │ ├── ast.h
│ │ ├── bitset.h
│ │ ├── boolobject.h
│ │ ├── bufferobject.h
│ │ ├── bytearrayobject.h
│ │ ├── bytes_methods.h
│ │ ├── bytesobject.h
│ │ ├── cStringIO.h
│ │ ├── cellobject.h
│ │ ├── ceval.h
│ │ ├── classobject.h
│ │ ├── cobject.h
│ │ ├── code.h
│ │ ├── codecs.h
│ │ ├── compile.h
│ │ ├── complexobject.h
│ │ ├── datetime.h
│ │ ├── descrobject.h
│ │ ├── dictobject.h
│ │ ├── dtoa.h
│ │ ├── enumobject.h
│ │ ├── errcode.h
│ │ ├── eval.h
│ │ ├── fileobject.h
│ │ ├── floatobject.h
│ │ ├── frameobject.h
│ │ ├── funcobject.h
│ │ ├── genobject.h
│ │ ├── graminit.h
│ │ ├── grammar.h
│ │ ├── import.h
│ │ ├── intobject.h
│ │ ├── intrcheck.h
│ │ ├── iterobject.h
│ │ ├── listobject.h
│ │ ├── longintrepr.h
│ │ ├── longobject.h
│ │ ├── marshal.h
│ │ ├── memoryobject.h
│ │ ├── metagrammar.h
│ │ ├── methodobject.h
│ │ ├── modsupport.h
│ │ ├── moduleobject.h
│ │ ├── node.h
│ │ ├── object.h
│ │ ├── objimpl.h
│ │ ├── opcode.h
│ │ ├── osdefs.h
│ │ ├── parsetok.h
│ │ ├── patchlevel.h
│ │ ├── pgen.h
│ │ ├── pgenheaders.h
│ │ ├── py_curses.h
│ │ ├── pyarena.h
│ │ ├── pycapsule.h
│ │ ├── pyconfig.h
│ │ ├── pyctype.h
│ │ ├── pydebug.h
│ │ ├── pyerrors.h
│ │ ├── pyexpat.h
│ │ ├── pyfpe.h
│ │ ├── pygetopt.h
│ │ ├── pymacconfig.h
│ │ ├── pymactoolbox.h
│ │ ├── pymath.h
│ │ ├── pymem.h
│ │ ├── pyport.h
│ │ ├── pystate.h
│ │ ├── pystrcmp.h
│ │ ├── pystrtod.h
│ │ ├── pythonrun.h
│ │ ├── pythread.h
│ │ ├── rangeobject.h
│ │ ├── setobject.h
│ │ ├── sliceobject.h
│ │ ├── stringobject.h
│ │ ├── structmember.h
│ │ ├── structseq.h
│ │ ├── symtable.h
│ │ ├── sysmodule.h
│ │ ├── timefuncs.h
│ │ ├── token.h
│ │ ├── traceback.h
│ │ ├── tupleobject.h
│ │ ├── ucnhash.h
│ │ ├── unicodeobject.h
│ │ ├── warnings.h
│ │ └── weakrefobject.h
│ ├── libs
│ │ ├── _bsddb.lib
│ │ ├── _ctypes.lib
│ │ ├── _ctypes_test.lib
│ │ ├── _elementtree.lib
│ │ ├── _hashlib.lib
│ │ ├── _msi.lib
│ │ ├── _multiprocessing.lib
│ │ ├── _socket.lib
│ │ ├── _sqlite3.lib
│ │ ├── _ssl.lib
│ │ ├── _testcapi.lib
│ │ ├── _tkinter.lib
│ │ ├── a.txt
│ │ ├── bz2.lib
│ │ ├── pyexpat.lib
│ │ ├── python27.lib
│ │ ├── select.lib
│ │ ├── unicodedata.lib
│ │ └── winsound.lib
│ └── 命令们.bat
├── _emd.dll
├── _emd.pyc
├── _emd.pyd
├── _emd.so
├── _emd_0.dll
├── emd.c
├── emd.h
├── emd.i
├── emd.py
├── emd.pyc
├── emd_wrap.c
├── example1.c
├── example1.py
├── example2.c
├── repexample.py
├── swigwin-3.0.7
│ ├── ANNOUNCE
│ ├── CCache
│ │ ├── COPYING
│ │ ├── Makefile.in
│ │ ├── README
│ │ ├── README.swig
│ │ ├── args.c
│ │ ├── ccache-swig.1
│ │ ├── ccache-swig.exe
│ │ ├── ccache.c
│ │ ├── ccache.h
│ │ ├── ccache.yo
│ │ ├── ccache_swig_config.h.in
│ │ ├── cleanup.c
│ │ ├── config.h.in
│ │ ├── 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.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
│ │ │ ├── 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
│ │ │ ├── SWIGDocumentation.html
│ │ │ ├── SWIGDocumentation.pdf
│ │ │ ├── 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
│ │ │ ├── margin-left.patch
│ │ │ ├── style.css
│ │ │ └── swig16.png
│ │ └── README
│ ├── Examples
│ │ ├── Makefile.in
│ │ ├── README
│ │ ├── android
│ │ │ ├── check.list
│ │ │ ├── class
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── Makefile
│ │ │ │ ├── ant.properties
│ │ │ │ ├── build.xml
│ │ │ │ ├── jni
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── example.cpp
│ │ │ │ │ ├── example.h
│ │ │ │ │ └── example.i
│ │ │ │ ├── local.properties
│ │ │ │ ├── proguard.cfg
│ │ │ │ ├── project.properties
│ │ │ │ ├── res
│ │ │ │ │ ├── layout
│ │ │ │ │ │ └── main.xml
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── swig
│ │ │ │ └── classexample
│ │ │ │ └── SwigClass.java
│ │ │ ├── extend
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── Makefile
│ │ │ │ ├── ant.properties
│ │ │ │ ├── build.xml
│ │ │ │ ├── jni
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── Application.mk
│ │ │ │ │ ├── example.cpp
│ │ │ │ │ ├── example.h
│ │ │ │ │ └── example.i
│ │ │ │ ├── local.properties
│ │ │ │ ├── proguard.cfg
│ │ │ │ ├── project.properties
│ │ │ │ ├── res
│ │ │ │ │ ├── layout
│ │ │ │ │ │ └── main.xml
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── swig
│ │ │ │ └── extendexample
│ │ │ │ └── SwigExtend.java
│ │ │ └── simple
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── Makefile
│ │ │ ├── ant.properties
│ │ │ ├── build.xml
│ │ │ ├── jni
│ │ │ │ ├── Android.mk
│ │ │ │ ├── example.c
│ │ │ │ └── example.i
│ │ │ ├── local.properties
│ │ │ ├── proguard.cfg
│ │ │ ├── project.properties
│ │ │ ├── res
│ │ │ │ ├── layout
│ │ │ │ │ └── main.xml
│ │ │ │ └── values
│ │ │ │ └── strings.xml
│ │ │ └── src
│ │ │ └── org
│ │ │ └── swig
│ │ │ └── simple
│ │ │ └── SwigSimple.java
│ │ ├── 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.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
│ │ ├── go
│ │ │ ├── callback
│ │ │ │ ├── Makefile
│ │ │ │ ├── callback.cxx
│ │ │ │ ├── example.h
│ │ │ │ ├── example.i
│ │ │ │ ├── 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
│ │ │ ├── enum
│ │ │ │ ├── Makefile
│ │ │ │ ├── enum.cxx
│ │ │ │ ├── example.h
│ │ │ │ ├── example.i
│ │ │ │ ├── index.html
│ │ │ │ └── runme.go
│ │ │ ├── extend
│ │ │ │ ├── Makefile
│ │ │ │ ├── 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
│ │ │ │ ├── Makefile
│ │ │ │ ├── README
│ │ │ │ ├── bar.h
│ │ │ │ ├── bar.i
│ │ │ │ ├── base.h
│ │ │ │ ├── base.i
│ │ │ │ ├── foo.h
│ │ │ │ ├── foo.i
│ │ │ │ ├── runme.lua
│ │ │ │ ├── spam.h
│ │ │ │ └── spam.i
│ │ │ ├── import.lua
│ │ │ ├── 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
│ │ │ ├── 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
│ │ ├── 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
│ │ │ │ ├── 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
│ │ │ ├── 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
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── Simple.i
│ │ │ │ │ └── runme.py
│ │ │ │ ├── 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.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.in
│ │ │ ├── char_binary.i
│ │ │ ├── char_constant.i
│ │ │ ├── char_strings.i
│ │ │ ├── chartest.i
│ │ │ ├── chicken
│ │ │ │ ├── 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_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.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_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.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_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_primitives_runme.cs
│ │ │ │ ├── director_protected_runme.cs
│ │ │ │ ├── director_smartptr_runme.cs
│ │ │ │ ├── director_string_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
│ │ │ │ ├── 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.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_constructor.i
│ │ │ ├── defvalue_constructor.i
│ │ │ ├── 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_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_wombat.i
│ │ │ ├── director_wstring.i
│ │ │ ├── disown.i
│ │ │ ├── dynamic_cast.i
│ │ │ ├── empty.i
│ │ │ ├── enum_forward.i
│ │ │ ├── enum_ignore.i
│ │ │ ├── enum_macro.i
│ │ │ ├── enum_missing.i
│ │ │ ├── enum_plus.i
│ │ │ ├── enum_rename.i
│ │ │ ├── enum_scope_template.i
│ │ │ ├── enum_template.i
│ │ │ ├── enum_thorough.i
│ │ │ ├── enum_thorough_proper.i
│ │ │ ├── enum_thorough_simple.i
│ │ │ ├── enum_thorough_typesafe.i
│ │ │ ├── enum_thorough_typeunsafe.i
│ │ │ ├── enum_var.i
│ │ │ ├── enums.i
│ │ │ ├── equality.i
│ │ │ ├── errors
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── c_bad_name.i
│ │ │ │ ├── c_bad_name.stderr
│ │ │ │ ├── c_bad_native.i
│ │ │ │ ├── c_bad_native.stderr
│ │ │ │ ├── c_class.i
│ │ │ │ ├── c_class.stderr
│ │ │ │ ├── c_default_error.i
│ │ │ │ ├── c_default_error.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.i
│ │ │ │ ├── c_varargs.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_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.i
│ │ │ │ ├── cpp_overload.stderr
│ │ │ │ ├── cpp_overload_const.i
│ │ │ │ ├── cpp_overload_const.stderr
│ │ │ │ ├── cpp_private_defvalue.i
│ │ │ │ ├── cpp_private_defvalue.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_argname.i
│ │ │ │ ├── cpp_template_argname.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_args.i
│ │ │ │ ├── pp_macro_args.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_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.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_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_runme.go
│ │ │ │ ├── li_attribute_runme.go
│ │ │ │ ├── li_carrays_runme.go
│ │ │ │ ├── li_cdata_runme.go
│ │ │ │ ├── li_cmalloc_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_extend_runme.go
│ │ │ │ ├── overload_extendc_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.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_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.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_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_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_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_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
│ │ │ │ ├── ret_by_value_runme.java
│ │ │ │ ├── rname_runme.java
│ │ │ │ ├── sizet_runme.java
│ │ │ │ ├── smart_pointer_const_overload_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.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_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
│ │ │ │ ├── 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
│ │ │ ├── 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_cdata.i
│ │ │ ├── li_cdata_carrays.i
│ │ │ ├── li_cmalloc.i
│ │ │ ├── li_constraints.i
│ │ │ ├── li_cpointer.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.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_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_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_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
│ │ │ ├── multivalue.i
│ │ │ ├── mzscheme
│ │ │ │ ├── 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_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.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.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_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_runme.m
│ │ │ │ ├── li_cmalloc_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_extend_runme.m
│ │ │ │ ├── overload_extendc_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_extendc.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.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_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.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_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_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_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
│ │ │ │ ├── primitive_ref_runme.php
│ │ │ │ ├── rename_scope_runme.php
│ │ │ │ ├── skel.php
│ │ │ │ ├── smart_pointer_rename_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.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.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_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_thread_local_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_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_profile_runme.py
│ │ │ │ ├── director_property_runme.py
│ │ │ │ ├── director_protected_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_runme.py
│ │ │ │ ├── enum_forward_runme.py
│ │ │ │ ├── enum_template_runme.py
│ │ │ │ ├── enums_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_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_runme.py
│ │ │ │ ├── li_cdata_runme.py
│ │ │ │ ├── li_cmalloc_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
│ │ │ │ ├── operbool_runme.py
│ │ │ │ ├── overload_bool_runme.py
│ │ │ │ ├── overload_complicated_runme.py
│ │ │ │ ├── overload_copy_runme.py
│ │ │ │ ├── overload_extend_runme.py
│ │ │ │ ├── overload_extendc_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_docstring_runme.py
│ │ │ │ ├── python_nondynamic_runme.py
│ │ │ │ ├── python_overload_simple_cast_runme.py
│ │ │ │ ├── python_pybuf_runme3.py
│ │ │ │ ├── python_pythoncode_runme.py
│ │ │ │ ├── python_richcompare_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_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_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_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_director.i
│ │ │ ├── python_docstring.i
│ │ │ ├── python_nondynamic.i
│ │ │ ├── python_overload_simple_cast.i
│ │ │ ├── python_pybuf.i
│ │ │ ├── python_pythoncode.i
│ │ │ ├── python_richcompare.i
│ │ │ ├── python_threads.i
│ │ │ ├── python_varargs_typemap.i
│ │ │ ├── r
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── arrays_dimensionless_runme.R
│ │ │ │ ├── funcptr_runme.R
│ │ │ │ ├── ignore_parameter_runme.R
│ │ │ │ ├── integers_runme.R
│ │ │ │ ├── overload_method_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_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_scope.i
│ │ │ ├── rename_simple.i
│ │ │ ├── rename_strip_encoder.i
│ │ │ ├── restrict_cplusplus.i
│ │ │ ├── ret_by_value.i
│ │ │ ├── return_const_value.i
│ │ │ ├── return_value_scope.i
│ │ │ ├── rname.i
│ │ │ ├── ruby
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── README
│ │ │ │ ├── abstract_access_runme.rb
│ │ │ │ ├── abstract_inherit_ok_runme.rb
│ │ │ │ ├── abstract_inherit_runme.rb
│ │ │ │ ├── abstract_signature_runme.rb
│ │ │ │ ├── abstract_typedef2_runme.rb
│ │ │ │ ├── abstract_typedef_runme.rb
│ │ │ │ ├── abstract_virtual_runme.rb
│ │ │ │ ├── access_change_runme.rb
│ │ │ │ ├── add_link_runme.rb
│ │ │ │ ├── aggregate_runme.rb
│ │ │ │ ├── anonymous_bitfield_runme.rb
│ │ │ │ ├── apply_signed_char_runme.rb
│ │ │ │ ├── apply_strings_runme.rb
│ │ │ │ ├── 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_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_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_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_extend_runme.rb
│ │ │ │ ├── overload_extendc_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_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_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_simple.scm
│ │ │ │ ├── overload_subtype.scm
│ │ │ │ ├── pointer_in_out.scm
│ │ │ │ ├── reference_global_vars.scm
│ │ │ │ ├── typedef_inherit.scm
│ │ │ │ ├── typename.scm
│ │ │ │ ├── unions.scm
│ │ │ │ └── unions_proxy.scm
│ │ │ ├── scilab
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── abstract_access_runme.sci
│ │ │ │ ├── abstract_inherit_ok_runme.sci
│ │ │ │ ├── abstract_inherit_runme.sci
│ │ │ │ ├── abstract_signature_runme.sci
│ │ │ │ ├── abstract_typedef2_runme.sci
│ │ │ │ ├── abstract_typedef_runme.sci
│ │ │ │ ├── abstract_virtual_runme.sci
│ │ │ │ ├── access_change_runme.sci
│ │ │ │ ├── add_link_runme.sci
│ │ │ │ ├── aggregate_runme.sci
│ │ │ │ ├── allowexcept_runme.sci
│ │ │ │ ├── allprotected_runme.sci
│ │ │ │ ├── anonymous_bitfield_runme.sci
│ │ │ │ ├── apply_signed_char_runme.sci
│ │ │ │ ├── apply_strings_runme.sci
│ │ │ │ ├── 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_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_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_extend_runme.sci
│ │ │ │ ├── overload_extendc_runme.sci
│ │ │ │ ├── overload_numeric_runme.sci
│ │ │ │ ├── overload_simple_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_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_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_simple.i
│ │ │ ├── struct_initialization.i
│ │ │ ├── struct_initialization_cpp.i
│ │ │ ├── struct_rename.i
│ │ │ ├── struct_value.i
│ │ │ ├── swig_examples_lock.h
│ │ │ ├── swigobject.i
│ │ │ ├── sym.i
│ │ │ ├── symbol_clash.i
│ │ │ ├── tag_no_clash_with_variable.i
│ │ │ ├── tcl
│ │ │ │ ├── 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_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
│ │ │ ├── traits.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_typedef.i
│ │ │ ├── typemap_array_qualifiers.i
│ │ │ ├── typemap_arrays.i
│ │ │ ├── typemap_delete.i
│ │ │ ├── typemap_directorout.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.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
│ │ │ ├── virtual_derivation.i
│ │ │ ├── virtual_destructor.i
│ │ │ ├── virtual_poly.i
│ │ │ ├── virtual_vs_nonvirtual_base.i
│ │ │ ├── voidtest.i
│ │ │ ├── wallkw.i
│ │ │ └── wrapmacro.i
│ │ └── xml
│ │ ├── Makefile.in
│ │ ├── error.expected-xml
│ │ ├── error.i
│ │ ├── example.expected-xml
│ │ ├── example.h
│ │ ├── example.i
│ │ ├── example_apply.expected-xml
│ │ ├── example_apply.i
│ │ ├── example_const.expected-xml
│ │ ├── example_const.i
│ │ ├── example_gif.expected-xml
│ │ ├── example_inl.expected-xml
│ │ ├── example_inl.h
│ │ ├── example_inl.i
│ │ ├── example_p5.expected-xml
│ │ ├── example_p5.i
│ │ ├── example_ro.expected-xml
│ │ ├── example_ro.i
│ │ ├── example_title_add.expected-xml
│ │ ├── example_title_add.i
│ │ ├── example_xml.expected-xml
│ │ ├── example_xml.h
│ │ ├── example_xml.i
│ │ ├── gnarly.expected-xml
│ │ └── gnarly.i
│ ├── INSTALL
│ ├── LICENSE
│ ├── LICENSE-GPL
│ ├── LICENSE-UNIVERSITIES
│ ├── Lib
│ │ ├── 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_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
│ │ │ ├── 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
│ │ ├── 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_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
│ │ │ ├── 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
│ │ ├── 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
│ │ │ ├── embed15.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_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
│ │ │ ├── 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_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_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_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
│ │ │ ├── traits.swg
│ │ │ ├── typemaps.swg
│ │ │ ├── valtypes.swg
│ │ │ ├── void.swg
│ │ │ └── wstring.swg
│ │ ├── uffi
│ │ │ └── uffi.swg
│ │ ├── wchar.i
│ │ ├── windows.i
│ │ └── xml
│ │ ├── typemaps.i
│ │ └── xml.swg
│ ├── Makefile.in
│ ├── README
│ ├── RELEASENOTES
│ ├── Source
│ │ ├── CParse
│ │ │ ├── cparse.h
│ │ │ ├── cscanner.c
│ │ │ ├── parser.c
│ │ │ ├── parser.h
│ │ │ ├── parser.y
│ │ │ ├── templ.c
│ │ │ └── util.c
│ │ ├── DOH
│ │ │ ├── README
│ │ │ ├── base.c
│ │ │ ├── doh.h
│ │ │ ├── dohint.h
│ │ │ ├── file.c
│ │ │ ├── fio.c
│ │ │ ├── hash.c
│ │ │ ├── list.c
│ │ │ ├── memory.c
│ │ │ ├── string.c
│ │ │ └── void.c
│ │ ├── Include
│ │ │ ├── swigconfig.h.in
│ │ │ └── swigwarn.h
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── Modules
│ │ │ ├── README
│ │ │ ├── allegrocl.cxx
│ │ │ ├── allocate.cxx
│ │ │ ├── browser.cxx
│ │ │ ├── cffi.cxx
│ │ │ ├── chicken.cxx
│ │ │ ├── clisp.cxx
│ │ │ ├── contract.cxx
│ │ │ ├── csharp.cxx
│ │ │ ├── d.cxx
│ │ │ ├── directors.cxx
│ │ │ ├── emit.cxx
│ │ │ ├── go.cxx
│ │ │ ├── guile.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
│ │ │ ├── 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
│ │ │ ├── cpp.c
│ │ │ ├── expr.c
│ │ │ └── preprocessor.h
│ │ ├── README
│ │ └── Swig
│ │ ├── cwrap.c
│ │ ├── deprecate.c
│ │ ├── error.c
│ │ ├── extend.c
│ │ ├── fragment.c
│ │ ├── getopt.c
│ │ ├── include.c
│ │ ├── misc.c
│ │ ├── naming.c
│ │ ├── parms.c
│ │ ├── scanner.c
│ │ ├── stype.c
│ │ ├── swig.h
│ │ ├── swigfile.h
│ │ ├── swigopt.h
│ │ ├── swigparm.h
│ │ ├── swigscan.h
│ │ ├── swigtree.h
│ │ ├── swigwrap.h
│ │ ├── symbol.c
│ │ ├── tree.c
│ │ ├── typemap.c
│ │ ├── typeobj.c
│ │ ├── typesys.c
│ │ └── wrapfunc.c
│ ├── TODO
│ ├── Tools
│ │ ├── 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.in
│ │ │ ├── javascript.cxx
│ │ │ ├── js_shell.cxx
│ │ │ ├── js_shell.h
│ │ │ ├── jsc_shell.cxx
│ │ │ └── v8_shell.cxx
│ │ ├── mkdist.py
│ │ ├── mkrelease.py
│ │ ├── mkwindows.sh
│ │ ├── obs-buildlogs.py
│ │ ├── obs-update
│ │ ├── pcre-build.sh
│ │ ├── pyname_patch.py
│ │ ├── setup.py.tmpl
│ │ ├── swig.gdb
│ │ ├── testflags.py
│ │ └── vcfilter
│ ├── Win
│ │ └── README.txt
│ ├── aclocal.m4
│ ├── appveyor.yml
│ ├── autogen.sh
│ ├── configure
│ ├── configure.ac
│ ├── preinst-swig.in
│ ├── swig.exe
│ ├── 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
└── testc
├── emd.c
├── emd.h
├── emd_wrap.c
├── example1.c
├── example2.c
├── for.py
├── ipch
│ └── testc-a7fa3530
│ └── testc-ae68836f.ipch
├── python27_d.lib
├── testc
│ ├── Debug
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── cl.command.1.tlog
│ │ ├── emd.obj
│ │ ├── testc.Build.CppClean.log
│ │ ├── testc.lastbuildstate
│ │ ├── testc.log
│ │ ├── testc.unsuccessfulbuild
│ │ ├── testc.vcxprojResolveAssemblyReference.cache
│ │ ├── testc.write.1.tlog
│ │ ├── vc100.idb
│ │ └── vc100.pdb
│ ├── python27_d.lib
│ ├── testc.vcxproj
│ ├── testc.vcxproj.filters
│ └── testc.vcxproj.user
├── testc.sdf
├── testc.sln
└── testc.suo
477 directories, 5333 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论