├── .gitignore ├── LICENSE ├── Linux ├── qwrap.so └── qwrap.so.1.6 ├── Makefile ├── Makefile.OSX_ARM64 ├── README.md ├── mkindex.tcl └── qwrap.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhenin/qwrap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhenin/qwrap/HEAD/LICENSE -------------------------------------------------------------------------------- /Linux/qwrap.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhenin/qwrap/HEAD/Linux/qwrap.so -------------------------------------------------------------------------------- /Linux/qwrap.so.1.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhenin/qwrap/HEAD/Linux/qwrap.so.1.6 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhenin/qwrap/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.OSX_ARM64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhenin/qwrap/HEAD/Makefile.OSX_ARM64 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhenin/qwrap/HEAD/README.md -------------------------------------------------------------------------------- /mkindex.tcl: -------------------------------------------------------------------------------- 1 | 2 | pkg_mkIndex . qwrap.so 3 | -------------------------------------------------------------------------------- /qwrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhenin/qwrap/HEAD/qwrap.cpp --------------------------------------------------------------------------------