├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── NEWS.md ├── README.md ├── bin └── pywrap ├── doc ├── Makefile ├── make.bat └── source │ ├── _static │ └── architecture.svg │ ├── architecture.rst │ ├── complex_example.rst │ ├── conf.py │ ├── function.rst │ ├── index.rst │ ├── memory_management.rst │ └── template_class.rst ├── examples ├── testcode │ ├── README.md │ ├── quaternion.hpp │ └── result │ │ └── example.py └── tinyfiledialogs │ ├── README.md │ └── result │ └── example.py ├── pywrap ├── __init__.py ├── ast.py ├── cython.py ├── defaultconfig.py ├── exporter.py ├── import_hook.py ├── libclang.py ├── parser.py ├── template_data │ ├── class.template │ ├── class_decl.template │ ├── convert_vector.template │ ├── declarations.template │ ├── definitions.template │ ├── enum.template │ ├── enum_decl.template │ ├── function.template │ └── setup.template ├── template_specialization.py ├── templates.py ├── test │ ├── test_ast.py │ ├── test_config.py │ ├── test_cython.py │ ├── test_exporter.py │ ├── test_libclang.py │ ├── test_parser.py │ ├── test_template_specialization.py │ ├── test_templates.py │ ├── test_type_conversion.py │ └── test_utils.py ├── testing.py ├── type_conversion.py └── utils.py ├── setup.cfg ├── setup.py └── test ├── abstractclass.hpp ├── addincludedir.hpp ├── anotherincludedir └── somefunction.hpp ├── boolinboolout.hpp ├── comments.hpp ├── complexarg.hpp ├── complexfield.hpp ├── complexhierarchy.hpp ├── complexptrarg.hpp ├── constructorargs.hpp ├── cppoperators.hpp ├── cstring.hpp ├── deppart1.hpp ├── deppart2.hpp ├── doubleindoubleout.hpp ├── eigen.hpp ├── enum.hpp ├── enuminclass.hpp ├── externallib ├── .gitignore ├── Makefile ├── mylib.cpp └── mylib.hpp ├── factory.hpp ├── fails.hpp ├── fixedarray.hpp ├── function.hpp ├── ignoreclass.hpp ├── ignoremethod.hpp ├── indeppart1.hpp ├── indeppart2.hpp ├── inheritancefromexternal.hpp ├── inheritancewithnamespace.hpp ├── map.hpp ├── missingassignmentop.hpp ├── missingdefaultctor.hpp ├── mystruct.hpp ├── namespaces.hpp ├── nodefaultctor.hpp ├── overloadfunction.hpp ├── overloadmethod.hpp ├── primitivepointers.hpp ├── pythonkeywords.hpp ├── sgetternameclash.hpp ├── staticmethod.hpp ├── stringinstringout.hpp ├── stringvector.hpp ├── subclass.hpp ├── templateclass.hpp ├── templatefunction.hpp ├── templatemethod.hpp ├── test_args.py ├── test_comments.py ├── test_config.py ├── test_custom_conversions.py ├── test_errors.py ├── test_features.py ├── test_import_hook.py ├── test_inheritance.py ├── test_overloading.py ├── test_regression.py ├── test_templates.py ├── test_type_conversions.py ├── throwexception.hpp ├── twoctors.hpp ├── typedef.hpp ├── vector.hpp ├── vectorofstruct.hpp └── withexternallib.hpp /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/README.md -------------------------------------------------------------------------------- /bin/pywrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/bin/pywrap -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/source/_static/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/doc/source/_static/architecture.svg -------------------------------------------------------------------------------- /doc/source/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/doc/source/architecture.rst -------------------------------------------------------------------------------- /doc/source/complex_example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/doc/source/complex_example.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/doc/source/function.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/memory_management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/doc/source/memory_management.rst -------------------------------------------------------------------------------- /doc/source/template_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/doc/source/template_class.rst -------------------------------------------------------------------------------- /examples/testcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/examples/testcode/README.md -------------------------------------------------------------------------------- /examples/testcode/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/examples/testcode/quaternion.hpp -------------------------------------------------------------------------------- /examples/testcode/result/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/examples/testcode/result/example.py -------------------------------------------------------------------------------- /examples/tinyfiledialogs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/examples/tinyfiledialogs/README.md -------------------------------------------------------------------------------- /examples/tinyfiledialogs/result/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/examples/tinyfiledialogs/result/example.py -------------------------------------------------------------------------------- /pywrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/__init__.py -------------------------------------------------------------------------------- /pywrap/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/ast.py -------------------------------------------------------------------------------- /pywrap/cython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/cython.py -------------------------------------------------------------------------------- /pywrap/defaultconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/defaultconfig.py -------------------------------------------------------------------------------- /pywrap/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/exporter.py -------------------------------------------------------------------------------- /pywrap/import_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/import_hook.py -------------------------------------------------------------------------------- /pywrap/libclang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/libclang.py -------------------------------------------------------------------------------- /pywrap/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/parser.py -------------------------------------------------------------------------------- /pywrap/template_data/class.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/template_data/class.template -------------------------------------------------------------------------------- /pywrap/template_data/class_decl.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/template_data/class_decl.template -------------------------------------------------------------------------------- /pywrap/template_data/convert_vector.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/template_data/convert_vector.template -------------------------------------------------------------------------------- /pywrap/template_data/declarations.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/template_data/declarations.template -------------------------------------------------------------------------------- /pywrap/template_data/definitions.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/template_data/definitions.template -------------------------------------------------------------------------------- /pywrap/template_data/enum.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/template_data/enum.template -------------------------------------------------------------------------------- /pywrap/template_data/enum_decl.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/template_data/enum_decl.template -------------------------------------------------------------------------------- /pywrap/template_data/function.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/template_data/function.template -------------------------------------------------------------------------------- /pywrap/template_data/setup.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/template_data/setup.template -------------------------------------------------------------------------------- /pywrap/template_specialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/template_specialization.py -------------------------------------------------------------------------------- /pywrap/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/templates.py -------------------------------------------------------------------------------- /pywrap/test/test_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/test/test_ast.py -------------------------------------------------------------------------------- /pywrap/test/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/test/test_config.py -------------------------------------------------------------------------------- /pywrap/test/test_cython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/test/test_cython.py -------------------------------------------------------------------------------- /pywrap/test/test_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/test/test_exporter.py -------------------------------------------------------------------------------- /pywrap/test/test_libclang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/test/test_libclang.py -------------------------------------------------------------------------------- /pywrap/test/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/test/test_parser.py -------------------------------------------------------------------------------- /pywrap/test/test_template_specialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/test/test_template_specialization.py -------------------------------------------------------------------------------- /pywrap/test/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/test/test_templates.py -------------------------------------------------------------------------------- /pywrap/test/test_type_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/test/test_type_conversion.py -------------------------------------------------------------------------------- /pywrap/test/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/test/test_utils.py -------------------------------------------------------------------------------- /pywrap/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/testing.py -------------------------------------------------------------------------------- /pywrap/type_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/type_conversion.py -------------------------------------------------------------------------------- /pywrap/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/pywrap/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/setup.py -------------------------------------------------------------------------------- /test/abstractclass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/abstractclass.hpp -------------------------------------------------------------------------------- /test/addincludedir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/addincludedir.hpp -------------------------------------------------------------------------------- /test/anotherincludedir/somefunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/anotherincludedir/somefunction.hpp -------------------------------------------------------------------------------- /test/boolinboolout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/boolinboolout.hpp -------------------------------------------------------------------------------- /test/comments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/comments.hpp -------------------------------------------------------------------------------- /test/complexarg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/complexarg.hpp -------------------------------------------------------------------------------- /test/complexfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/complexfield.hpp -------------------------------------------------------------------------------- /test/complexhierarchy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/complexhierarchy.hpp -------------------------------------------------------------------------------- /test/complexptrarg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/complexptrarg.hpp -------------------------------------------------------------------------------- /test/constructorargs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/constructorargs.hpp -------------------------------------------------------------------------------- /test/cppoperators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/cppoperators.hpp -------------------------------------------------------------------------------- /test/cstring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/cstring.hpp -------------------------------------------------------------------------------- /test/deppart1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/deppart1.hpp -------------------------------------------------------------------------------- /test/deppart2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/deppart2.hpp -------------------------------------------------------------------------------- /test/doubleindoubleout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/doubleindoubleout.hpp -------------------------------------------------------------------------------- /test/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/eigen.hpp -------------------------------------------------------------------------------- /test/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/enum.hpp -------------------------------------------------------------------------------- /test/enuminclass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/enuminclass.hpp -------------------------------------------------------------------------------- /test/externallib/.gitignore: -------------------------------------------------------------------------------- 1 | libmylib.so 2 | -------------------------------------------------------------------------------- /test/externallib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/externallib/Makefile -------------------------------------------------------------------------------- /test/externallib/mylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/externallib/mylib.cpp -------------------------------------------------------------------------------- /test/externallib/mylib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/externallib/mylib.hpp -------------------------------------------------------------------------------- /test/factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/factory.hpp -------------------------------------------------------------------------------- /test/fails.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/fails.hpp -------------------------------------------------------------------------------- /test/fixedarray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/fixedarray.hpp -------------------------------------------------------------------------------- /test/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/function.hpp -------------------------------------------------------------------------------- /test/ignoreclass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/ignoreclass.hpp -------------------------------------------------------------------------------- /test/ignoremethod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/ignoremethod.hpp -------------------------------------------------------------------------------- /test/indeppart1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/indeppart1.hpp -------------------------------------------------------------------------------- /test/indeppart2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/indeppart2.hpp -------------------------------------------------------------------------------- /test/inheritancefromexternal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/inheritancefromexternal.hpp -------------------------------------------------------------------------------- /test/inheritancewithnamespace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/inheritancewithnamespace.hpp -------------------------------------------------------------------------------- /test/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/map.hpp -------------------------------------------------------------------------------- /test/missingassignmentop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/missingassignmentop.hpp -------------------------------------------------------------------------------- /test/missingdefaultctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/missingdefaultctor.hpp -------------------------------------------------------------------------------- /test/mystruct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/mystruct.hpp -------------------------------------------------------------------------------- /test/namespaces.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/namespaces.hpp -------------------------------------------------------------------------------- /test/nodefaultctor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/nodefaultctor.hpp -------------------------------------------------------------------------------- /test/overloadfunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/overloadfunction.hpp -------------------------------------------------------------------------------- /test/overloadmethod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/overloadmethod.hpp -------------------------------------------------------------------------------- /test/primitivepointers.hpp: -------------------------------------------------------------------------------- 1 | int fun1(int* i) 2 | { 3 | return *i + 1; 4 | } -------------------------------------------------------------------------------- /test/pythonkeywords.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/pythonkeywords.hpp -------------------------------------------------------------------------------- /test/sgetternameclash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/sgetternameclash.hpp -------------------------------------------------------------------------------- /test/staticmethod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/staticmethod.hpp -------------------------------------------------------------------------------- /test/stringinstringout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/stringinstringout.hpp -------------------------------------------------------------------------------- /test/stringvector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/stringvector.hpp -------------------------------------------------------------------------------- /test/subclass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/subclass.hpp -------------------------------------------------------------------------------- /test/templateclass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/templateclass.hpp -------------------------------------------------------------------------------- /test/templatefunction.hpp: -------------------------------------------------------------------------------- 1 | template 2 | T addOne(T t) 3 | { 4 | return t + T(1); 5 | } 6 | -------------------------------------------------------------------------------- /test/templatemethod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/templatemethod.hpp -------------------------------------------------------------------------------- /test/test_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/test_args.py -------------------------------------------------------------------------------- /test/test_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/test_comments.py -------------------------------------------------------------------------------- /test/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/test_config.py -------------------------------------------------------------------------------- /test/test_custom_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/test_custom_conversions.py -------------------------------------------------------------------------------- /test/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/test_errors.py -------------------------------------------------------------------------------- /test/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/test_features.py -------------------------------------------------------------------------------- /test/test_import_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/test_import_hook.py -------------------------------------------------------------------------------- /test/test_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/test_inheritance.py -------------------------------------------------------------------------------- /test/test_overloading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/test_overloading.py -------------------------------------------------------------------------------- /test/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/test_regression.py -------------------------------------------------------------------------------- /test/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/test_templates.py -------------------------------------------------------------------------------- /test/test_type_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/test_type_conversions.py -------------------------------------------------------------------------------- /test/throwexception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/throwexception.hpp -------------------------------------------------------------------------------- /test/twoctors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/twoctors.hpp -------------------------------------------------------------------------------- /test/typedef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/typedef.hpp -------------------------------------------------------------------------------- /test/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/vector.hpp -------------------------------------------------------------------------------- /test/vectorofstruct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/vectorofstruct.hpp -------------------------------------------------------------------------------- /test/withexternallib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderFabisch/cythonwrapper/HEAD/test/withexternallib.hpp --------------------------------------------------------------------------------