├── .circleci └── config.yml ├── .clang-format ├── .gitignore ├── .pylintrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── genpybind ├── genpybind.h ├── genpybind ├── __init__.py ├── __main__.py ├── annotations.py ├── cutils.py ├── decls │ ├── __init__.py │ ├── callables.py │ ├── constructors.py │ ├── declarations.py │ ├── enums.py │ ├── gather.py │ ├── klasses.py │ ├── level.py │ ├── manual.py │ ├── methods.py │ ├── namespaces.py │ ├── operators.py │ ├── typedefs.py │ └── variables.py ├── expose.py ├── registry.py ├── tool.py └── utils.py ├── llvm-patches ├── 0001-Tooling-Fully-qualify-template-parameters-of-nested-.patch ├── 0002-libclang-Add-support-for-obtaining-fully-qualified-n.patch ├── 0003-libclang-Add-option-to-keep-whitespace-when-tokenizi.patch ├── 0004-libclang-WIP-Allow-visiting-of-implicit-declarations.patch └── 0005-libclang-WIP-Fix-get_tokens-in-macro-expansion.patch ├── mypy └── clang │ ├── __init__.pyi │ └── cindex.pyi ├── source ├── GenpybindExpandASTConsumer.cpp ├── GenpybindExpandASTConsumer.h └── genpybind-parse.cpp ├── tests ├── .pylintrc ├── abstract_base.cpp ├── abstract_base.h ├── abstract_base_test.py ├── aggregates.cpp ├── aggregates.h ├── aggregates_test.py ├── annotations.cpp ├── annotations.h ├── annotations_test.py ├── annotations_unit_test.py ├── argsandkwargs.cpp ├── argsandkwargs.h ├── argsandkwargs_test.py ├── argument_names.cpp ├── argument_names.h ├── argument_names_test.py ├── check-snapshot.py ├── class_hierarchy.cpp ├── class_hierarchy.h ├── class_hierarchy_test.py ├── default_arguments.cpp ├── default_arguments.h ├── default_arguments_test.py ├── docstrings.cpp ├── docstrings.h ├── docstrings_test.py ├── dynamic_attr.cpp ├── dynamic_attr.h ├── dynamic_attr_test.py ├── enums.cpp ├── enums.h ├── enums_test.py ├── example.cpp ├── example.h ├── example_test.py ├── expected │ ├── abstract_base.txt │ ├── aggregates.txt │ ├── annotations.txt │ ├── argsandkwargs.txt │ ├── argument_names.txt │ ├── class_hierarchy.txt │ ├── default_arguments.py3.7.txt │ ├── default_arguments.txt │ ├── docstrings.txt │ ├── dynamic_attr.txt │ ├── enums.py3.7.txt │ ├── enums.txt │ ├── example.txt │ ├── explicit_template_function.txt │ ├── expose_as.py3.7.txt │ ├── expose_as.txt │ ├── hide_base.txt │ ├── holder_type.txt │ ├── implicit_conversion.txt │ ├── inline_base.txt │ ├── inline_base_crtp.txt │ ├── keep_alive.py3.7.txt │ ├── keep_alive.txt │ ├── manual.txt │ ├── noconvert.txt │ ├── opaque_typedefs.txt │ ├── operators.txt │ ├── optional_parameters.txt │ ├── overloads.txt │ ├── properties.py3.7.txt │ ├── properties.txt │ ├── reference_member.txt │ ├── required.txt │ ├── return_value_policy.txt │ ├── return_value_types.py3.7.txt │ ├── return_value_types.txt │ ├── stringstream.txt │ ├── submodules.txt │ ├── tags_a.txt │ ├── tags_b.txt │ ├── tags_c.txt │ ├── typedefs.txt │ ├── typedefs_across_modules.txt │ ├── typedefs_across_modules_missing_include.txt │ ├── typedefs_definition.txt │ ├── variables.py3.7.txt │ ├── variables.txt │ ├── variant_parameters.txt │ ├── visibility.py3.7.txt │ └── visibility.txt ├── explicit_template_function.cpp ├── explicit_template_function.h ├── explicit_template_function_test.py ├── expose_as.cpp ├── expose_as.h ├── expose_as_test.py ├── fully_qualified_expressions.h ├── genpybind.h ├── genpybind_waf.py ├── hide_base.cpp ├── hide_base.h ├── hide_base_test.py ├── holder_type.cpp ├── holder_type.h ├── holder_type_test.py ├── implicit_conversion.cpp ├── implicit_conversion.h ├── implicit_conversion_test.py ├── inline_base.cpp ├── inline_base.h ├── inline_base_crtp.cpp ├── inline_base_crtp.h ├── inline_base_crtp_test.py ├── inline_base_test.py ├── keep_alive.cpp ├── keep_alive.h ├── keep_alive_test.py ├── manual.cpp ├── manual.h ├── manual_test.py ├── noconvert.cpp ├── noconvert.h ├── noconvert_test.py ├── opaque_typedefs.cpp ├── opaque_typedefs.h ├── opaque_typedefs_test.py ├── operators.cpp ├── operators.h ├── operators_test.py ├── optional_parameters.cpp ├── optional_parameters.h ├── optional_parameters_test.py ├── overloads.cpp ├── overloads.h ├── overloads_test.py ├── properties.cpp ├── properties.h ├── properties_test.py ├── reference_member.cpp ├── reference_member.h ├── reference_member_test.py ├── required.cpp ├── required.h ├── required_test.py ├── return_value_policy.cpp ├── return_value_policy.h ├── return_value_policy_test.py ├── return_value_types.cpp ├── return_value_types.h ├── return_value_types_test.py ├── stringstream.cpp ├── stringstream.h ├── stringstream_test.py ├── submodules.cpp ├── submodules.h ├── submodules_test.py ├── tags_a.cpp ├── tags_a.h ├── tags_a_test.py ├── tags_b.cpp ├── tags_b.h ├── tags_b_test.py ├── tags_c.cpp ├── tags_c.h ├── tags_c_test.py ├── tags_shared.h ├── typedefs.cpp ├── typedefs.h ├── typedefs_across_modules.cpp ├── typedefs_across_modules.h ├── typedefs_across_modules_missing_include.cpp ├── typedefs_across_modules_missing_include.h ├── typedefs_across_modules_missing_include_test.py ├── typedefs_across_modules_test.py ├── typedefs_definition.cpp ├── typedefs_definition.h ├── typedefs_definition_test.py ├── typedefs_test.py ├── variables.cpp ├── variables.h ├── variables_test.py ├── variant_parameters.cpp ├── variant_parameters.h ├── variant_parameters_test.py ├── visibility.cpp ├── visibility.h ├── visibility_test.py └── wscript ├── waf └── wscript /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | Language: Cpp 3 | BasedOnStyle: LLVM 4 | ... 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/.pylintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/README.md -------------------------------------------------------------------------------- /bin/genpybind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/bin/genpybind -------------------------------------------------------------------------------- /genpybind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind.h -------------------------------------------------------------------------------- /genpybind/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /genpybind/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/__main__.py -------------------------------------------------------------------------------- /genpybind/annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/annotations.py -------------------------------------------------------------------------------- /genpybind/cutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/cutils.py -------------------------------------------------------------------------------- /genpybind/decls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/decls/__init__.py -------------------------------------------------------------------------------- /genpybind/decls/callables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/decls/callables.py -------------------------------------------------------------------------------- /genpybind/decls/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/decls/constructors.py -------------------------------------------------------------------------------- /genpybind/decls/declarations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/decls/declarations.py -------------------------------------------------------------------------------- /genpybind/decls/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/decls/enums.py -------------------------------------------------------------------------------- /genpybind/decls/gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/decls/gather.py -------------------------------------------------------------------------------- /genpybind/decls/klasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/decls/klasses.py -------------------------------------------------------------------------------- /genpybind/decls/level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/decls/level.py -------------------------------------------------------------------------------- /genpybind/decls/manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/decls/manual.py -------------------------------------------------------------------------------- /genpybind/decls/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/decls/methods.py -------------------------------------------------------------------------------- /genpybind/decls/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/decls/namespaces.py -------------------------------------------------------------------------------- /genpybind/decls/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/decls/operators.py -------------------------------------------------------------------------------- /genpybind/decls/typedefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/decls/typedefs.py -------------------------------------------------------------------------------- /genpybind/decls/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/decls/variables.py -------------------------------------------------------------------------------- /genpybind/expose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/expose.py -------------------------------------------------------------------------------- /genpybind/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/registry.py -------------------------------------------------------------------------------- /genpybind/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/tool.py -------------------------------------------------------------------------------- /genpybind/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/genpybind/utils.py -------------------------------------------------------------------------------- /llvm-patches/0001-Tooling-Fully-qualify-template-parameters-of-nested-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/llvm-patches/0001-Tooling-Fully-qualify-template-parameters-of-nested-.patch -------------------------------------------------------------------------------- /llvm-patches/0002-libclang-Add-support-for-obtaining-fully-qualified-n.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/llvm-patches/0002-libclang-Add-support-for-obtaining-fully-qualified-n.patch -------------------------------------------------------------------------------- /llvm-patches/0003-libclang-Add-option-to-keep-whitespace-when-tokenizi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/llvm-patches/0003-libclang-Add-option-to-keep-whitespace-when-tokenizi.patch -------------------------------------------------------------------------------- /llvm-patches/0004-libclang-WIP-Allow-visiting-of-implicit-declarations.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/llvm-patches/0004-libclang-WIP-Allow-visiting-of-implicit-declarations.patch -------------------------------------------------------------------------------- /llvm-patches/0005-libclang-WIP-Fix-get_tokens-in-macro-expansion.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/llvm-patches/0005-libclang-WIP-Fix-get_tokens-in-macro-expansion.patch -------------------------------------------------------------------------------- /mypy/clang/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mypy/clang/cindex.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/mypy/clang/cindex.pyi -------------------------------------------------------------------------------- /source/GenpybindExpandASTConsumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/source/GenpybindExpandASTConsumer.cpp -------------------------------------------------------------------------------- /source/GenpybindExpandASTConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/source/GenpybindExpandASTConsumer.h -------------------------------------------------------------------------------- /source/genpybind-parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/source/genpybind-parse.cpp -------------------------------------------------------------------------------- /tests/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/.pylintrc -------------------------------------------------------------------------------- /tests/abstract_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/abstract_base.cpp -------------------------------------------------------------------------------- /tests/abstract_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/abstract_base.h -------------------------------------------------------------------------------- /tests/abstract_base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/abstract_base_test.py -------------------------------------------------------------------------------- /tests/aggregates.cpp: -------------------------------------------------------------------------------- 1 | #include "aggregates.h" 2 | -------------------------------------------------------------------------------- /tests/aggregates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/aggregates.h -------------------------------------------------------------------------------- /tests/aggregates_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/aggregates_test.py -------------------------------------------------------------------------------- /tests/annotations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/annotations.cpp -------------------------------------------------------------------------------- /tests/annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/annotations.h -------------------------------------------------------------------------------- /tests/annotations_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/annotations_test.py -------------------------------------------------------------------------------- /tests/annotations_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/annotations_unit_test.py -------------------------------------------------------------------------------- /tests/argsandkwargs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/argsandkwargs.cpp -------------------------------------------------------------------------------- /tests/argsandkwargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/argsandkwargs.h -------------------------------------------------------------------------------- /tests/argsandkwargs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/argsandkwargs_test.py -------------------------------------------------------------------------------- /tests/argument_names.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/argument_names.cpp -------------------------------------------------------------------------------- /tests/argument_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/argument_names.h -------------------------------------------------------------------------------- /tests/argument_names_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/argument_names_test.py -------------------------------------------------------------------------------- /tests/check-snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/check-snapshot.py -------------------------------------------------------------------------------- /tests/class_hierarchy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/class_hierarchy.cpp -------------------------------------------------------------------------------- /tests/class_hierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/class_hierarchy.h -------------------------------------------------------------------------------- /tests/class_hierarchy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/class_hierarchy_test.py -------------------------------------------------------------------------------- /tests/default_arguments.cpp: -------------------------------------------------------------------------------- 1 | #include "default_arguments.h" 2 | 3 | constexpr int example::Y::N; 4 | -------------------------------------------------------------------------------- /tests/default_arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/default_arguments.h -------------------------------------------------------------------------------- /tests/default_arguments_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/default_arguments_test.py -------------------------------------------------------------------------------- /tests/docstrings.cpp: -------------------------------------------------------------------------------- 1 | #include "docstrings.h" 2 | -------------------------------------------------------------------------------- /tests/docstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/docstrings.h -------------------------------------------------------------------------------- /tests/docstrings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/docstrings_test.py -------------------------------------------------------------------------------- /tests/dynamic_attr.cpp: -------------------------------------------------------------------------------- 1 | #include "dynamic_attr.h" 2 | -------------------------------------------------------------------------------- /tests/dynamic_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/dynamic_attr.h -------------------------------------------------------------------------------- /tests/dynamic_attr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/dynamic_attr_test.py -------------------------------------------------------------------------------- /tests/enums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/enums.cpp -------------------------------------------------------------------------------- /tests/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/enums.h -------------------------------------------------------------------------------- /tests/enums_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/enums_test.py -------------------------------------------------------------------------------- /tests/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/example.cpp -------------------------------------------------------------------------------- /tests/example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/example.h -------------------------------------------------------------------------------- /tests/example_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/example_test.py -------------------------------------------------------------------------------- /tests/expected/abstract_base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/abstract_base.txt -------------------------------------------------------------------------------- /tests/expected/aggregates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/aggregates.txt -------------------------------------------------------------------------------- /tests/expected/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/annotations.txt -------------------------------------------------------------------------------- /tests/expected/argsandkwargs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/argsandkwargs.txt -------------------------------------------------------------------------------- /tests/expected/argument_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/argument_names.txt -------------------------------------------------------------------------------- /tests/expected/class_hierarchy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/class_hierarchy.txt -------------------------------------------------------------------------------- /tests/expected/default_arguments.py3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/default_arguments.py3.7.txt -------------------------------------------------------------------------------- /tests/expected/default_arguments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/default_arguments.txt -------------------------------------------------------------------------------- /tests/expected/docstrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/docstrings.txt -------------------------------------------------------------------------------- /tests/expected/dynamic_attr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/dynamic_attr.txt -------------------------------------------------------------------------------- /tests/expected/enums.py3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/enums.py3.7.txt -------------------------------------------------------------------------------- /tests/expected/enums.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/enums.txt -------------------------------------------------------------------------------- /tests/expected/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/example.txt -------------------------------------------------------------------------------- /tests/expected/explicit_template_function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/explicit_template_function.txt -------------------------------------------------------------------------------- /tests/expected/expose_as.py3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/expose_as.py3.7.txt -------------------------------------------------------------------------------- /tests/expected/expose_as.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/expose_as.txt -------------------------------------------------------------------------------- /tests/expected/hide_base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/hide_base.txt -------------------------------------------------------------------------------- /tests/expected/holder_type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/holder_type.txt -------------------------------------------------------------------------------- /tests/expected/implicit_conversion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/implicit_conversion.txt -------------------------------------------------------------------------------- /tests/expected/inline_base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/inline_base.txt -------------------------------------------------------------------------------- /tests/expected/inline_base_crtp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/inline_base_crtp.txt -------------------------------------------------------------------------------- /tests/expected/keep_alive.py3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/keep_alive.py3.7.txt -------------------------------------------------------------------------------- /tests/expected/keep_alive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/keep_alive.txt -------------------------------------------------------------------------------- /tests/expected/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/manual.txt -------------------------------------------------------------------------------- /tests/expected/noconvert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/noconvert.txt -------------------------------------------------------------------------------- /tests/expected/opaque_typedefs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/opaque_typedefs.txt -------------------------------------------------------------------------------- /tests/expected/operators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/operators.txt -------------------------------------------------------------------------------- /tests/expected/optional_parameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/optional_parameters.txt -------------------------------------------------------------------------------- /tests/expected/overloads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/overloads.txt -------------------------------------------------------------------------------- /tests/expected/properties.py3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/properties.py3.7.txt -------------------------------------------------------------------------------- /tests/expected/properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/properties.txt -------------------------------------------------------------------------------- /tests/expected/reference_member.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/reference_member.txt -------------------------------------------------------------------------------- /tests/expected/required.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/required.txt -------------------------------------------------------------------------------- /tests/expected/return_value_policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/return_value_policy.txt -------------------------------------------------------------------------------- /tests/expected/return_value_types.py3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/return_value_types.py3.7.txt -------------------------------------------------------------------------------- /tests/expected/return_value_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/return_value_types.txt -------------------------------------------------------------------------------- /tests/expected/stringstream.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/stringstream.txt -------------------------------------------------------------------------------- /tests/expected/submodules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/submodules.txt -------------------------------------------------------------------------------- /tests/expected/tags_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/tags_a.txt -------------------------------------------------------------------------------- /tests/expected/tags_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/tags_b.txt -------------------------------------------------------------------------------- /tests/expected/tags_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/tags_c.txt -------------------------------------------------------------------------------- /tests/expected/typedefs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/typedefs.txt -------------------------------------------------------------------------------- /tests/expected/typedefs_across_modules.txt: -------------------------------------------------------------------------------- 1 | NAME 2 | pytypedefs_across_modules 3 | 4 | -------------------------------------------------------------------------------- /tests/expected/typedefs_across_modules_missing_include.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/typedefs_across_modules_missing_include.txt -------------------------------------------------------------------------------- /tests/expected/typedefs_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/typedefs_definition.txt -------------------------------------------------------------------------------- /tests/expected/variables.py3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/variables.py3.7.txt -------------------------------------------------------------------------------- /tests/expected/variables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/variables.txt -------------------------------------------------------------------------------- /tests/expected/variant_parameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/variant_parameters.txt -------------------------------------------------------------------------------- /tests/expected/visibility.py3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/visibility.py3.7.txt -------------------------------------------------------------------------------- /tests/expected/visibility.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expected/visibility.txt -------------------------------------------------------------------------------- /tests/explicit_template_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/explicit_template_function.cpp -------------------------------------------------------------------------------- /tests/explicit_template_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/explicit_template_function.h -------------------------------------------------------------------------------- /tests/explicit_template_function_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/explicit_template_function_test.py -------------------------------------------------------------------------------- /tests/expose_as.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expose_as.cpp -------------------------------------------------------------------------------- /tests/expose_as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expose_as.h -------------------------------------------------------------------------------- /tests/expose_as_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/expose_as_test.py -------------------------------------------------------------------------------- /tests/fully_qualified_expressions.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "genpybind.h" 4 | -------------------------------------------------------------------------------- /tests/genpybind.h: -------------------------------------------------------------------------------- 1 | ../genpybind.h -------------------------------------------------------------------------------- /tests/genpybind_waf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/genpybind_waf.py -------------------------------------------------------------------------------- /tests/hide_base.cpp: -------------------------------------------------------------------------------- 1 | #include "hide_base.h" 2 | -------------------------------------------------------------------------------- /tests/hide_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/hide_base.h -------------------------------------------------------------------------------- /tests/hide_base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/hide_base_test.py -------------------------------------------------------------------------------- /tests/holder_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/holder_type.cpp -------------------------------------------------------------------------------- /tests/holder_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/holder_type.h -------------------------------------------------------------------------------- /tests/holder_type_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/holder_type_test.py -------------------------------------------------------------------------------- /tests/implicit_conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/implicit_conversion.cpp -------------------------------------------------------------------------------- /tests/implicit_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/implicit_conversion.h -------------------------------------------------------------------------------- /tests/implicit_conversion_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/implicit_conversion_test.py -------------------------------------------------------------------------------- /tests/inline_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/inline_base.cpp -------------------------------------------------------------------------------- /tests/inline_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/inline_base.h -------------------------------------------------------------------------------- /tests/inline_base_crtp.cpp: -------------------------------------------------------------------------------- 1 | #include "inline_base_crtp.h" 2 | -------------------------------------------------------------------------------- /tests/inline_base_crtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/inline_base_crtp.h -------------------------------------------------------------------------------- /tests/inline_base_crtp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/inline_base_crtp_test.py -------------------------------------------------------------------------------- /tests/inline_base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/inline_base_test.py -------------------------------------------------------------------------------- /tests/keep_alive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/keep_alive.cpp -------------------------------------------------------------------------------- /tests/keep_alive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/keep_alive.h -------------------------------------------------------------------------------- /tests/keep_alive_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/keep_alive_test.py -------------------------------------------------------------------------------- /tests/manual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/manual.cpp -------------------------------------------------------------------------------- /tests/manual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/manual.h -------------------------------------------------------------------------------- /tests/manual_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/manual_test.py -------------------------------------------------------------------------------- /tests/noconvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/noconvert.cpp -------------------------------------------------------------------------------- /tests/noconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/noconvert.h -------------------------------------------------------------------------------- /tests/noconvert_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/noconvert_test.py -------------------------------------------------------------------------------- /tests/opaque_typedefs.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/opaque_typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/opaque_typedefs.h -------------------------------------------------------------------------------- /tests/opaque_typedefs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/opaque_typedefs_test.py -------------------------------------------------------------------------------- /tests/operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/operators.cpp -------------------------------------------------------------------------------- /tests/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/operators.h -------------------------------------------------------------------------------- /tests/operators_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/operators_test.py -------------------------------------------------------------------------------- /tests/optional_parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/optional_parameters.cpp -------------------------------------------------------------------------------- /tests/optional_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/optional_parameters.h -------------------------------------------------------------------------------- /tests/optional_parameters_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/optional_parameters_test.py -------------------------------------------------------------------------------- /tests/overloads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/overloads.cpp -------------------------------------------------------------------------------- /tests/overloads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/overloads.h -------------------------------------------------------------------------------- /tests/overloads_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/overloads_test.py -------------------------------------------------------------------------------- /tests/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/properties.cpp -------------------------------------------------------------------------------- /tests/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/properties.h -------------------------------------------------------------------------------- /tests/properties_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/properties_test.py -------------------------------------------------------------------------------- /tests/reference_member.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/reference_member.cpp -------------------------------------------------------------------------------- /tests/reference_member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/reference_member.h -------------------------------------------------------------------------------- /tests/reference_member_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/reference_member_test.py -------------------------------------------------------------------------------- /tests/required.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/required.cpp -------------------------------------------------------------------------------- /tests/required.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/required.h -------------------------------------------------------------------------------- /tests/required_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/required_test.py -------------------------------------------------------------------------------- /tests/return_value_policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/return_value_policy.cpp -------------------------------------------------------------------------------- /tests/return_value_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/return_value_policy.h -------------------------------------------------------------------------------- /tests/return_value_policy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/return_value_policy_test.py -------------------------------------------------------------------------------- /tests/return_value_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/return_value_types.cpp -------------------------------------------------------------------------------- /tests/return_value_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/return_value_types.h -------------------------------------------------------------------------------- /tests/return_value_types_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/return_value_types_test.py -------------------------------------------------------------------------------- /tests/stringstream.cpp: -------------------------------------------------------------------------------- 1 | #include "stringstream.h" 2 | -------------------------------------------------------------------------------- /tests/stringstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/stringstream.h -------------------------------------------------------------------------------- /tests/stringstream_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/stringstream_test.py -------------------------------------------------------------------------------- /tests/submodules.cpp: -------------------------------------------------------------------------------- 1 | #include "submodules.h" 2 | -------------------------------------------------------------------------------- /tests/submodules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/submodules.h -------------------------------------------------------------------------------- /tests/submodules_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/submodules_test.py -------------------------------------------------------------------------------- /tests/tags_a.cpp: -------------------------------------------------------------------------------- 1 | #include "tags_a.h" 2 | -------------------------------------------------------------------------------- /tests/tags_a.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "tags_shared.h" 4 | -------------------------------------------------------------------------------- /tests/tags_a_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/tags_a_test.py -------------------------------------------------------------------------------- /tests/tags_b.cpp: -------------------------------------------------------------------------------- 1 | #include "tags_b.h" 2 | -------------------------------------------------------------------------------- /tests/tags_b.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "tags_shared.h" 4 | -------------------------------------------------------------------------------- /tests/tags_b_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/tags_b_test.py -------------------------------------------------------------------------------- /tests/tags_c.cpp: -------------------------------------------------------------------------------- 1 | #include "tags_c.h" 2 | -------------------------------------------------------------------------------- /tests/tags_c.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "tags_shared.h" 4 | -------------------------------------------------------------------------------- /tests/tags_c_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/tags_c_test.py -------------------------------------------------------------------------------- /tests/tags_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/tags_shared.h -------------------------------------------------------------------------------- /tests/typedefs.cpp: -------------------------------------------------------------------------------- 1 | #include "typedefs.h" 2 | -------------------------------------------------------------------------------- /tests/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/typedefs.h -------------------------------------------------------------------------------- /tests/typedefs_across_modules.cpp: -------------------------------------------------------------------------------- 1 | #include "typedefs_across_modules.h" 2 | -------------------------------------------------------------------------------- /tests/typedefs_across_modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/typedefs_across_modules.h -------------------------------------------------------------------------------- /tests/typedefs_across_modules_missing_include.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/typedefs_across_modules_missing_include.cpp -------------------------------------------------------------------------------- /tests/typedefs_across_modules_missing_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/typedefs_across_modules_missing_include.h -------------------------------------------------------------------------------- /tests/typedefs_across_modules_missing_include_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/typedefs_across_modules_missing_include_test.py -------------------------------------------------------------------------------- /tests/typedefs_across_modules_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/typedefs_across_modules_test.py -------------------------------------------------------------------------------- /tests/typedefs_definition.cpp: -------------------------------------------------------------------------------- 1 | #include "typedefs_definition.h" 2 | -------------------------------------------------------------------------------- /tests/typedefs_definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/typedefs_definition.h -------------------------------------------------------------------------------- /tests/typedefs_definition_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/typedefs_definition_test.py -------------------------------------------------------------------------------- /tests/typedefs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/typedefs_test.py -------------------------------------------------------------------------------- /tests/variables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/variables.cpp -------------------------------------------------------------------------------- /tests/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/variables.h -------------------------------------------------------------------------------- /tests/variables_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/variables_test.py -------------------------------------------------------------------------------- /tests/variant_parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/variant_parameters.cpp -------------------------------------------------------------------------------- /tests/variant_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/variant_parameters.h -------------------------------------------------------------------------------- /tests/variant_parameters_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/variant_parameters_test.py -------------------------------------------------------------------------------- /tests/visibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/visibility.cpp -------------------------------------------------------------------------------- /tests/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/visibility.h -------------------------------------------------------------------------------- /tests/visibility_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/visibility_test.py -------------------------------------------------------------------------------- /tests/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/tests/wscript -------------------------------------------------------------------------------- /waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/waf -------------------------------------------------------------------------------- /wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kljohann/genpybind-legacy/HEAD/wscript --------------------------------------------------------------------------------