├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── MANIFEST.readme ├── README.md ├── contributed ├── __init__.py ├── arrayinfo │ ├── arrayinfo.py │ ├── cpptokenize.py │ ├── createarrayinfo.py │ └── readme.txt ├── doc_extractors │ ├── LICENSE_1_0.txt │ ├── doxygen.py │ ├── permissions.txt │ └── readme.txt ├── goodies │ ├── __init__.py │ ├── dsl_interface.py │ ├── goodie_overrides.py │ ├── goodie_perf_overrides.py │ └── goodie_utils.py └── pypp_api │ ├── generate_docs.py │ ├── license.txt │ ├── pypp_api │ ├── __init__.py │ ├── argpolicy.py │ ├── decltypes.py │ ├── declwrapper.py │ ├── extendcreators.py │ ├── filters.py │ ├── modulebuilder.py │ ├── selection.py │ └── treerange.py │ └── readme.txt ├── dev_tools ├── development_stages.md └── port_to_pybind11.md ├── docs ├── Makefile ├── make.bat └── source │ ├── code_creators_uml.png │ ├── comparisons │ ├── compare_to.rst │ └── pyste.rst │ ├── conf.py │ ├── definition.irest │ ├── documentation │ ├── apidocs │ │ ├── _logging_.rst │ │ ├── api.rst │ │ ├── code_creators.rst │ │ ├── code_repository.rst │ │ ├── code_repository │ │ │ └── indexing_suite.rst │ │ ├── creators_factory.rst │ │ ├── decl_wrappers.rst │ │ ├── file_writers.rst │ │ ├── function_transformers.rst │ │ ├── messages.rst │ │ ├── module_builder.rst │ │ └── utils.rst │ ├── architecture.rst │ ├── containers.rst │ ├── ctypes │ │ ├── ctypes_integration.rst │ │ ├── this_and_sizeof.rst │ │ ├── unions.rst │ │ └── variables.rst │ ├── doc_string.rst │ ├── functions │ │ ├── call_policies │ │ │ ├── as_tuple.rst │ │ │ ├── call_policies.rst │ │ │ ├── custom_call_policies.rst │ │ │ ├── return_addressof.rst │ │ │ ├── return_pointee_value.rst │ │ │ └── return_range.rst │ │ ├── default_args.rst │ │ ├── functions.rst │ │ ├── make_constructor.rst │ │ ├── overloading.rst │ │ ├── registration_order.rst │ │ └── transformation │ │ │ ├── from_address.rst │ │ │ ├── inout.rst │ │ │ ├── inout_static_array.rst │ │ │ ├── inout_static_matrix.rst │ │ │ ├── input.rst │ │ │ ├── input_c_buffer.rst │ │ │ ├── input_static_array.rst │ │ │ ├── input_static_matrix.rst │ │ │ ├── modify_type.rst │ │ │ ├── name_mangling.rst │ │ │ ├── output.rst │ │ │ ├── output_static_array.rst │ │ │ ├── output_static_matrix.rst │ │ │ ├── terminology.rst │ │ │ ├── transfer_ownership.rst │ │ │ └── transformation.rst │ ├── how_to │ │ ├── absolute_relative_paths.rst │ │ ├── best_practices.rst │ │ ├── exception_translation.rst │ │ ├── fatal_error_c1204.rst │ │ ├── file_name_too_long.rst │ │ ├── hints.rst │ │ ├── how_to.rst │ │ └── templates.rst │ ├── index.rst │ ├── indexing_suite_v2.html │ ├── indexing_suite_v2.html.rst │ ├── indexing_suite_v2_files │ │ ├── boost.css │ │ ├── cboost.gif │ │ ├── overview.png │ │ ├── proxy.png │ │ └── proxy_detached.png │ ├── inserting_code.rst │ ├── multi_module_development.rst │ ├── properties.rst │ ├── split_module.rst │ ├── tutorials │ │ ├── module_builder │ │ │ ├── generate_code.py │ │ │ ├── generate_code.py.rst │ │ │ ├── generated.cpp │ │ │ ├── generated.cpp.rst │ │ │ ├── hello_world.hpp │ │ │ ├── hello_world.hpp.rst │ │ │ └── module_builder.rst │ │ ├── pyplusplus_gui.png │ │ ├── pyplusplus_gui.rst │ │ └── tutorials.rst │ └── warnings.rst │ ├── download.rst │ ├── examples │ ├── boost │ │ └── boost.rst │ ├── easybmp │ │ ├── easybmp.rst │ │ ├── pkg-info.txt │ │ ├── source.bmp │ │ └── target.bmp │ └── examples.rst │ ├── history │ └── history.rst │ ├── index.rst │ ├── links.rst │ ├── peps │ ├── dsl_challenge.rst │ ├── dsl_challenge_introduction.irest │ └── peps_index.rst │ ├── pkg-info.txt │ ├── pyplusplus_uml.vsd │ ├── quotes.rst │ └── troubleshooting_guide │ ├── automatic_conversion │ ├── automatic_conversion.rst │ ├── automatic_conversion.zip │ ├── custom_rvalue.cpp │ ├── custom_rvalue.cpp.rst │ ├── definition.irest │ ├── sconstruct │ ├── sconstruct.rst │ ├── test.py │ ├── test.py.rst │ ├── tuples.hpp │ ├── tuples.hpp.rst │ ├── tuples_tester.cpp │ └── tuples_tester.cpp.rst │ ├── easy_extending_guide │ └── easy_extending_guide.rst │ ├── exceptions │ ├── definition.irest │ ├── exceptions.cpp │ ├── exceptions.cpp.rst │ ├── exceptions.rst │ ├── exceptions.zip │ ├── sconstruct │ ├── sconstruct.rst │ ├── test.py │ └── test.py.rst │ ├── lessons_learned.rst │ ├── shared_ptr │ ├── definition.irest │ ├── generate_code.py │ ├── pointer_holder.hpp.patch │ ├── pointer_holder.hpp.patch.rst │ ├── sconstruct │ ├── sconstruct.rst │ ├── shared_ptr.rst │ ├── shared_ptr.zip │ ├── solution.cpp │ ├── solution.cpp.rst │ ├── test.py │ └── test.py.rst │ └── smart_ptrs │ ├── bindings.cpp │ ├── bindings.cpp.rst │ ├── classes.hpp │ ├── classes.hpp.rst │ ├── definition.irest │ ├── sconstruct │ ├── sconstruct.rst │ ├── smart_ptr.h │ ├── smart_ptr.h.rst │ ├── smart_ptrs.rst │ ├── smart_ptrs.zip │ ├── test.py │ └── test.py.rst ├── environment.py ├── environment_path_helper.py ├── examples ├── custom_code_creator │ ├── generate_code.py │ ├── generated │ │ └── properties.py.cpp │ ├── properties.hpp │ ├── sconstruct │ └── unittests │ │ └── test_all.py ├── environment.py ├── gmplib_dev │ ├── dev │ │ ├── generate_code.py │ │ └── project_env.py │ ├── pygmplib │ │ ├── __init__.py │ │ └── ctypes_utils.py │ └── test.py ├── libmemcached_dev │ ├── dev │ │ ├── generate_code.py │ │ └── project_env.py │ ├── libmemcached-0.31.tar.gz │ ├── pymemcached │ │ ├── __init__.py │ │ ├── ctypes_utils.py │ │ └── exposed_decl.pypp.txt │ └── test.py ├── pyboost_dev │ ├── MANIFEST.in │ ├── crc_example.py │ ├── date_time_example.py │ ├── dev │ │ ├── boost_random │ │ │ ├── generate_code.py │ │ │ ├── random_export.hpp │ │ │ ├── random_settings.py │ │ │ └── sconscript │ │ ├── crc │ │ │ ├── crc_export.hpp │ │ │ ├── crc_settings.py │ │ │ ├── generate_code.py │ │ │ └── sconscript │ │ ├── date_time │ │ │ ├── customization_data.py │ │ │ ├── date_time_settings.py │ │ │ ├── generate_code.py │ │ │ ├── include │ │ │ │ ├── date_time.pypp.hpp │ │ │ │ ├── date_time.pypp.xml │ │ │ │ └── date_time_wrapper.hpp │ │ │ └── sconscript │ │ └── rational │ │ │ ├── generate_code.py │ │ │ ├── rational_export.hpp │ │ │ ├── rational_settings.py │ │ │ └── sconscript │ ├── pyboost │ │ ├── __init__.py │ │ ├── boost_random │ │ │ └── __init__.py │ │ ├── crc │ │ │ └── __init__.py │ │ ├── date_time │ │ │ ├── __init__.py │ │ │ └── date_time_zonespec.csv │ │ └── rational │ │ │ └── __init__.py │ ├── random_example.py │ ├── rational_example.py │ ├── sconstruct │ ├── setup.py │ └── unittestst │ │ ├── boost_random │ │ └── test_all.py │ │ ├── crc │ │ └── test_all.py │ │ ├── date_time │ │ ├── examples.py │ │ ├── gregorian_tester.py │ │ ├── local_time_tester.py │ │ ├── posix_time_tester.py │ │ └── test_all.py │ │ ├── rational │ │ └── test_all.py │ │ └── test_all.py └── pyeasybmp_dev │ ├── boost.python │ ├── pyeasybmp │ │ ├── build_setup.py │ │ ├── environment.py │ │ ├── generate_code.py │ │ └── sconstruct │ └── unittests │ │ ├── grayscale.py │ │ ├── source.bmp │ │ └── target.bmp │ ├── easybmp │ ├── BSD_(revised)_license.txt │ ├── EasyBMP.cpp │ ├── EasyBMP.h │ ├── EasyBMP_BMP.h │ ├── EasyBMP_ChangeLog.txt │ ├── EasyBMP_DataStructures.h │ ├── EasyBMP_VariousBMPutilities.h │ ├── binaries │ │ ├── easybmp.dll │ │ ├── easybmp.dll.manifest │ │ ├── easybmp.exp │ │ ├── easybmp.lib │ │ └── easybmp.map │ ├── sample │ │ ├── EasyBMPbackground.bmp │ │ ├── EasyBMPsample.cpp │ │ ├── EasyBMPtext.bmp │ │ └── makefile │ ├── sconscript │ └── sconstruct │ └── environment.py ├── indexing_suite_v2 ├── docs │ ├── indexing_suite_v2.html │ └── indexing_suite_v2_files │ │ ├── boost.css │ │ ├── cboost.gif │ │ ├── overview.png │ │ ├── proxy.png │ │ └── proxy_detached.png ├── indexing_suite │ ├── algorithms.hpp │ ├── container_proxy.hpp │ ├── container_suite.hpp │ ├── container_traits.hpp │ ├── deque.hpp │ ├── element_proxy.hpp │ ├── element_proxy_traits.hpp │ ├── int_slice_helper.hpp │ ├── iterator_range.hpp │ ├── iterator_traits.hpp │ ├── list.hpp │ ├── map.hpp │ ├── methods.hpp │ ├── multimap.hpp │ ├── pair.hpp │ ├── proxy_iterator.hpp │ ├── python_iterator.hpp │ ├── registry_utils.hpp │ ├── set.hpp │ ├── shared_proxy_impl.hpp │ ├── slice.hpp │ ├── slice_handler.hpp │ ├── suite_utils.hpp │ ├── value_traits.hpp │ ├── vector.hpp │ ├── visitor.hpp │ └── workaround.hpp ├── readme.txt └── update_code_repository.py ├── pypp11 ├── __init__.py ├── _logging_ │ ├── __init__.py │ └── multi_line_formatter.py ├── code_creators │ ├── __init__.py │ ├── algorithm.py │ ├── array_1_registrator.py │ ├── bookmark.py │ ├── calldef.py │ ├── calldef_ctypes.py │ ├── calldef_transformed.py │ ├── calldef_utils.py │ ├── class_declaration.py │ ├── code_creator.py │ ├── compound.py │ ├── ctypes_formatter.py │ ├── ctypes_integration_creators.py │ ├── custom.py │ ├── declaration_based.py │ ├── embedded_code_repository.py │ ├── enum.py │ ├── exception_translator.py │ ├── global_variable.py │ ├── include.py │ ├── include_directories.py │ ├── indexing_suites.py │ ├── instruction.py │ ├── library_reference.py │ ├── license.py │ ├── member_variable.py │ ├── module.py │ ├── module_body.py │ ├── name_mappings.py │ ├── namespace.py │ ├── opaque_type_registrator.py │ ├── properties.py │ ├── registration_based.py │ ├── scoped.py │ ├── smart_pointers.py │ ├── target_configuration.py │ ├── typedef_as_pyvar.py │ └── unnamed_enum.py ├── code_repository │ ├── __init__.py │ ├── array_1.py │ ├── call_policies.py │ ├── convenience.py │ ├── ctypes_integration.py │ ├── ctypes_utils.py │ ├── gil_guard.py │ ├── indexing_suite │ │ ├── __init__.py │ │ ├── algorithms_header.py │ │ ├── container_proxy_header.py │ │ ├── container_suite_header.py │ │ ├── container_traits_header.py │ │ ├── deque_header.py │ │ ├── element_proxy_header.py │ │ ├── element_proxy_traits_header.py │ │ ├── int_slice_helper_header.py │ │ ├── iterator_range_header.py │ │ ├── iterator_traits_header.py │ │ ├── list_header.py │ │ ├── map_header.py │ │ ├── methods_header.py │ │ ├── multimap_header.py │ │ ├── pair_header.py │ │ ├── proxy_iterator_header.py │ │ ├── python_iterator_header.py │ │ ├── registry_utils_header.py │ │ ├── set_header.py │ │ ├── shared_proxy_impl_header.py │ │ ├── slice_handler_header.py │ │ ├── slice_header.py │ │ ├── suite_utils_header.py │ │ ├── value_traits_header.py │ │ ├── vector_header.py │ │ ├── visitor_header.py │ │ └── workaround_header.py │ ├── named_tuple.py │ ├── return_pointee_value.hpp │ └── return_range.py ├── creators_factory │ ├── __init__.py │ ├── bpcreator.py │ ├── call_policies_resolver.py │ ├── creators_wizard.py │ ├── ctypes_creator.py │ ├── dependencies_manager.py │ ├── fake_constructors_manager.py │ ├── opaque_types_manager.py │ ├── pybind11_creator.py │ ├── sort_algorithms.py │ └── types_database.py ├── decl_wrappers │ ├── __init__.py │ ├── algorithm.py │ ├── call_policies.py │ ├── calldef_wrapper.py │ ├── class_wrapper.py │ ├── decl_wrapper.py │ ├── decl_wrapper_printer.py │ ├── doc_extractor.py │ ├── enumeration_wrapper.py │ ├── indexing_suite1.py │ ├── indexing_suite2.py │ ├── namespace_wrapper.py │ ├── properties.py │ ├── python_traits.py │ ├── scopedef_wrapper.py │ ├── typedef_wrapper.py │ ├── user_text.py │ └── variable_wrapper.py ├── file_writers │ ├── __init__.py │ ├── balanced_files.py │ ├── class_multiple_files.py │ ├── md5sum_repository.py │ ├── multiple_files.py │ ├── single_file.py │ └── writer.py ├── function_transformers │ ├── __init__.py │ ├── controllers.py │ ├── function_transformation.py │ ├── templates.py │ ├── transformer.py │ └── transformers.py ├── messages │ ├── __init__.py │ └── warnings_.py ├── module_builder │ ├── __init__.py │ ├── boost_python_builder.py │ ├── call_policies.py │ ├── ctypes_builder.py │ ├── ctypes_decls_dependencies.py │ ├── module_builder.py │ └── pybind11_builder.py └── utils │ └── __init__.py ├── scripts ├── freeze.py ├── pyplusplus_gui ├── pyplusplus_gui.pyw └── wrap_library.py ├── setup.py └── unit_tests ├── __init__.py ├── abstract_classes_tester.py ├── abstract_tester.py ├── algorithms_tester.py ├── already_exposed_tester.py ├── arrays_bug_tester.py ├── autoconfig.py ├── balanced_files_tester.py ├── bool_by_ref_tester.py ├── bpmodule_tester.py ├── bug_covariant_returns_tester.py ├── call_policies_tester.py ├── casting_tester.py ├── class_order2_tester.py ├── class_order3_tester.py ├── class_order4_tester.py ├── class_order_tester.py ├── classes_tester.py ├── constructors_bug_tester.py ├── convenience_tester.py ├── cp_return_addressof_tester.py ├── cppexceptions_tester.py ├── ctypes_tester.py ├── custom_smart_ptr_classes_tester.py ├── custom_string_tester.py ├── data ├── abstract_classes_to_be_exported.hpp ├── abstract_to_be_exported.hpp ├── already_exposed_2to_be_exported.hpp ├── already_exposed_to_be_exported.hpp ├── arrays_bug_to_be_exported.hpp ├── balanced_files_to_be_exported.hpp ├── bool_by_ref_to_be_exported.hpp ├── bpmodule_to_be_exported.hpp ├── bug_covariant_returns_to_be_exported.hpp ├── call_policies_to_be_exported.cpp ├── call_policies_to_be_exported.hpp ├── casting_to_be_exported.hpp ├── class_order2_to_be_exported.hpp ├── class_order3_to_be_exported.hpp ├── class_order4_to_be_exported.hpp ├── class_order_to_be_exported.hpp ├── classes_to_be_exported.hpp ├── constructors_bug_to_be_exported.hpp ├── convenience_to_be_exported.hpp ├── cp_return_addressof_to_be_exported.hpp ├── cppexceptions_to_be_exported.hpp ├── ctypes │ ├── anonymous │ │ ├── anonymous.cpp │ │ ├── anonymous.h │ │ └── sconscript │ ├── char_ptr_as_binary_data │ │ ├── char_ptr_as_binary_data.cpp │ │ ├── char_ptr_as_binary_data.h │ │ └── sconscript │ ├── circular_references │ │ ├── circular_references.cpp │ │ ├── circular_references.h │ │ └── sconscript │ ├── enums │ │ ├── enums.cpp │ │ ├── enums.h │ │ └── sconscript │ ├── function_ptr_as_variable │ │ ├── function_ptr_as_variable.cpp │ │ ├── function_ptr_as_variable.h │ │ └── sconscript │ ├── include_algorithm │ │ ├── include_algorithm.cpp │ │ ├── include_algorithm.h │ │ └── sconscript │ ├── opaque │ │ ├── opaque.cpp │ │ ├── opaque.h │ │ └── sconscript │ ├── templates │ │ ├── sconscript │ │ ├── templates.cpp │ │ └── templates.h │ ├── user_code │ │ ├── sconscript │ │ ├── user_code.cpp │ │ └── user_code.h │ ├── varargs │ │ ├── sconscript │ │ ├── varargs.cpp │ │ └── varargs.h │ └── variables │ │ ├── sconscript │ │ ├── variables.cpp │ │ └── variables.h ├── custom_smart_ptr.h ├── custom_smart_ptr_classes_to_be_exported.hpp ├── custom_string_to_be_exported.hpp ├── declarations_order_bug_false_to_be_exported.hpp ├── declarations_order_bug_true_to_be_exported.hpp ├── deepcopy_to_be_exported.hpp ├── default_args_to_be_exported.hpp ├── derive_from_deque_to_be_exported.hpp ├── duplicate_aliases_to_be_exported.cpp ├── duplicate_aliases_to_be_exported.hpp ├── embeded_to_be_exported.hpp ├── enums_exported_expected.hpp ├── enums_to_be_exported.hpp ├── factory_to_be_exported.cpp ├── factory_to_be_exported.hpp ├── filesystem_to_be_exported.hpp ├── final_classes_to_be_exported.hpp ├── finalizables_to_be_exported.hpp ├── free_function_ignore_bug_to_be_exported.hpp ├── free_functions_to_be_exported.hpp ├── free_operators_to_be_exported.hpp ├── ft_constructor_to_be_exported.hpp ├── ft_from_address_to_be_exported.hpp ├── ft_inout_bugs_to_be_exported.hpp ├── ft_inout_static_array_to_be_exported.hpp ├── ft_inout_static_matrix_to_be_exported.hpp ├── ft_input_static_matrix_to_be_exported.hpp ├── ft_output_static_matrix_to_be_exported.hpp ├── function_adaptor_to_be_exported.hpp ├── function_transformations_to_be_exported.hpp ├── global_variables_to_be_exported.cpp ├── global_variables_to_be_exported.hpp ├── hierarchy3_to_be_exported.hpp ├── include_exclude_bug_to_be_exported.hpp ├── index_operator_to_be_exported.hpp ├── indexing_suite2_shared_ptr_value_traits_to_be_exported.cpp ├── indexing_suite2_shared_ptr_value_traits_to_be_exported.hpp ├── indexing_suite_v1_to_be_exported.hpp ├── indexing_suites2_support_to_be_exported.hpp ├── indexing_suites2_to_be_exported.hpp ├── indexing_suites_to_be_exported.hpp ├── indexing_suites_v2_bug_a_to_be_exported.hpp ├── indexing_suites_v2_bug_b_to_be_exported.hpp ├── inner_base_class_to_be_exported.hpp ├── inner_class_bug_to_be_exported.hpp ├── inner_tmpl_class_to_be_exported.hpp ├── internal_classes_to_be_exported.hpp ├── libconfig.h ├── mailing_list_help_to_be_exported.hpp ├── make_constructor_to_be_exported.hpp ├── mem_fun_with_exception_to_be_exported.hpp ├── mem_var_compile_error_bug_to_be_exported.hpp ├── member_functions_to_be_exported.cpp ├── member_functions_to_be_exported.hpp ├── member_variables_to_be_exported.cpp ├── member_variables_to_be_exported.hpp ├── module_body_to_be_exported.hpp ├── namespaces_to_be_exported.hpp ├── no_init_to_be_exported.hpp ├── non_overridable_to_be_exported.cpp ├── non_overridable_to_be_exported.hpp ├── noncopyable_to_be_exported.hpp ├── operators_bug_to_be_exported.hpp ├── operators_to_be_exported.hpp ├── optional_bug_to_be_exported.hpp ├── optional_to_be_exported.hpp ├── overloads_macro_to_be_exported.hpp ├── override_bug_to_be_exported.hpp ├── overriden_virtual_functions_bug_to_be_exported.hpp ├── particleuniverse.xml.bz2 ├── pointer_as_arg_to_be_exported.hpp ├── pointer_to_function_as_argument_to_be_exported.hpp ├── precompiled_header_to_be_exported.hpp ├── private_assign_to_be_exported.hpp ├── properties_to_be_exported.hpp ├── protected_bug_to_be_exported.hpp ├── protected_to_be_exported.hpp ├── recursive_to_be_exported.hpp ├── refee_refer_to_be_exported.hpp ├── regression1_to_be_exported.hpp ├── regression2_to_be_exported.hpp ├── regression3_to_be_exported.hpp ├── return_auto_ptr_to_be_exported.hpp ├── return_ref_to_ptr_to_be_exported.hpp ├── selection_bug_to_be_exported.hpp ├── smart_pointers_to_be_exported.cpp ├── smart_pointers_to_be_exported.hpp ├── special_operators_to_be_exported.hpp ├── split_module_bug_to_be_exported.cpp ├── split_module_bug_to_be_exported.hpp ├── split_module_indexing_suite_bug_to_be_exported.hpp ├── split_module_to_be_exported.hpp ├── statics_to_be_exported.cpp ├── statics_to_be_exported.hpp ├── std_pair_to_be_exported.hpp ├── templates_to_be_exported.hpp ├── temporary_variable_to_be_exported.hpp ├── throw_to_be_exported.cpp ├── throw_to_be_exported.hpp ├── tnfox_bugs_to_be_exported.hpp ├── transfer_ownership_old_to_be_exported.hpp ├── transfer_ownership_to_be_exported.hpp ├── unions_to_be_exported.hpp ├── unnamed_classes_to_be_exported.hpp ├── unnamed_enums_to_be_exported.hpp ├── user_text_to_be_exported.hpp ├── vector3_to_be_exported.cpp ├── vector3_to_be_exported.hpp ├── vector_with_shared_data_to_be_exported.cpp ├── vector_with_shared_data_to_be_exported.hpp └── virtual_inheritance_to_be_exported.hpp ├── declarations_order_bug_tester.py ├── deepcopy_tester.py ├── default_args_tester.py ├── derive_from_deque_tester.py ├── duplicate_aliases_tester.py ├── dwrapper_printer_tester.py ├── embeded_tester.py ├── enums_tester.py ├── exposed_decls_db_tester.py ├── factory_tester.py ├── final_classes_tester.py ├── finalizables_tester.py ├── free_function_ignore_bug_tester.py ├── free_functions_tester.py ├── free_operators_tester.py ├── ft_from_address_tester.py ├── ft_inout_static_array_tester.py ├── ft_inout_static_matrix_tester.py ├── ft_inout_tester.py ├── ft_input_static_matrix_tester.py ├── ft_output_static_matrix_tester.py ├── function_adaptor_tester.py ├── function_transformations_tester.py ├── fundamental_tester_base.py ├── gccxml.cfg ├── global_variables_tester.py ├── gui_tester.py ├── gui_wizard_tester.py ├── hierarchy3_tester.py ├── include_exclude_bug_tester.py ├── index_operator_tester.py ├── indexing_suite2_shared_ptr_value_traits_tester.py ├── indexing_suite_v1_tester.py ├── indexing_suites2_support_tester.py ├── indexing_suites2_tester.py ├── indexing_suites_tester.py ├── indexing_suites_v2_bug_tester.py ├── inner_base_class_tester.py ├── inner_class_bug_tester.py ├── inner_tmpl_class_tester.py ├── internal_classes_tester.py ├── mailing_list_help_tester.py ├── make_constructor_tester.py ├── mdecl_wrapper_tester.py ├── mem_fun_with_exception_tester.py ├── mem_var_compile_error_bug_tester.py ├── member_functions_tester.py ├── member_variables_tester.py ├── module_body_tester.py ├── module_properties_tester.py ├── namespaces_tester.py ├── no_init_tester.py ├── non_overridable_tester.py ├── noncopyable_tester.py ├── ogre_generate_tester.py ├── operators_bug_tester.py ├── operators_tester.py ├── optional_bug_tester.py ├── optional_tester.py ├── overloads_macro_tester.py ├── override_bug_tester.py ├── overriden_virtual_functions_bug_tester.py ├── particle_universe_generate_tester.py ├── pointer_as_arg_tester.py ├── pointer_to_function_as_argument.py ├── precompiled_header_tester.py ├── private_assign_tester.py ├── properties_tester.py ├── protected_bug_tester.py ├── protected_tester.py ├── recursive_tester.py ├── refee_refer_tester.py ├── regression1_tester.py ├── regression2_tester.py ├── regression3_tester.py ├── return_auto_ptr_tester.py ├── return_ref_to_ptr_tester.py ├── sconstruct ├── selection_bug_tester.py ├── smart_pointers_tester.py ├── special_operators_tester.py ├── split_module_bug_tester.py ├── split_module_indexing_suite_bug_tester.py ├── split_module_tester.py ├── statics_tester.py ├── std_pair_tester.py ├── templates_tester.py ├── temporary_variable_tester.py ├── test_all.py ├── throw_tester.py ├── tnfox_bugs_tester.py ├── transfer_ownership_old_tester.py ├── transfer_ownership_tester.py ├── unicode_bug.py ├── unions_tester.py ├── unnamed_classes_tester.py ├── unnamed_enums_tester.py ├── user_text_tester.py ├── vector3_tester.py ├── vector_with_shared_data_tester.py └── virtual_inheritance_tester.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/MANIFEST.readme -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/README.md -------------------------------------------------------------------------------- /contributed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/__init__.py -------------------------------------------------------------------------------- /contributed/arrayinfo/arrayinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/arrayinfo/arrayinfo.py -------------------------------------------------------------------------------- /contributed/arrayinfo/cpptokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/arrayinfo/cpptokenize.py -------------------------------------------------------------------------------- /contributed/arrayinfo/createarrayinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/arrayinfo/createarrayinfo.py -------------------------------------------------------------------------------- /contributed/arrayinfo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/arrayinfo/readme.txt -------------------------------------------------------------------------------- /contributed/doc_extractors/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/doc_extractors/LICENSE_1_0.txt -------------------------------------------------------------------------------- /contributed/doc_extractors/doxygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/doc_extractors/doxygen.py -------------------------------------------------------------------------------- /contributed/doc_extractors/permissions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/doc_extractors/permissions.txt -------------------------------------------------------------------------------- /contributed/doc_extractors/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/doc_extractors/readme.txt -------------------------------------------------------------------------------- /contributed/goodies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/goodies/__init__.py -------------------------------------------------------------------------------- /contributed/goodies/dsl_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/goodies/dsl_interface.py -------------------------------------------------------------------------------- /contributed/goodies/goodie_overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/goodies/goodie_overrides.py -------------------------------------------------------------------------------- /contributed/goodies/goodie_perf_overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/goodies/goodie_perf_overrides.py -------------------------------------------------------------------------------- /contributed/goodies/goodie_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/goodies/goodie_utils.py -------------------------------------------------------------------------------- /contributed/pypp_api/generate_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/pypp_api/generate_docs.py -------------------------------------------------------------------------------- /contributed/pypp_api/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/pypp_api/license.txt -------------------------------------------------------------------------------- /contributed/pypp_api/pypp_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/pypp_api/pypp_api/__init__.py -------------------------------------------------------------------------------- /contributed/pypp_api/pypp_api/argpolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/pypp_api/pypp_api/argpolicy.py -------------------------------------------------------------------------------- /contributed/pypp_api/pypp_api/decltypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/pypp_api/pypp_api/decltypes.py -------------------------------------------------------------------------------- /contributed/pypp_api/pypp_api/declwrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/pypp_api/pypp_api/declwrapper.py -------------------------------------------------------------------------------- /contributed/pypp_api/pypp_api/extendcreators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/pypp_api/pypp_api/extendcreators.py -------------------------------------------------------------------------------- /contributed/pypp_api/pypp_api/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/pypp_api/pypp_api/filters.py -------------------------------------------------------------------------------- /contributed/pypp_api/pypp_api/modulebuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/pypp_api/pypp_api/modulebuilder.py -------------------------------------------------------------------------------- /contributed/pypp_api/pypp_api/selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/pypp_api/pypp_api/selection.py -------------------------------------------------------------------------------- /contributed/pypp_api/pypp_api/treerange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/pypp_api/pypp_api/treerange.py -------------------------------------------------------------------------------- /contributed/pypp_api/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/contributed/pypp_api/readme.txt -------------------------------------------------------------------------------- /dev_tools/development_stages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/dev_tools/development_stages.md -------------------------------------------------------------------------------- /dev_tools/port_to_pybind11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/dev_tools/port_to_pybind11.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/code_creators_uml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/code_creators_uml.png -------------------------------------------------------------------------------- /docs/source/comparisons/compare_to.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/comparisons/compare_to.rst -------------------------------------------------------------------------------- /docs/source/comparisons/pyste.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/comparisons/pyste.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/definition.irest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/definition.irest -------------------------------------------------------------------------------- /docs/source/documentation/apidocs/_logging_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/apidocs/_logging_.rst -------------------------------------------------------------------------------- /docs/source/documentation/apidocs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/apidocs/api.rst -------------------------------------------------------------------------------- /docs/source/documentation/apidocs/code_creators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/apidocs/code_creators.rst -------------------------------------------------------------------------------- /docs/source/documentation/apidocs/code_repository.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/apidocs/code_repository.rst -------------------------------------------------------------------------------- /docs/source/documentation/apidocs/code_repository/indexing_suite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/apidocs/code_repository/indexing_suite.rst -------------------------------------------------------------------------------- /docs/source/documentation/apidocs/creators_factory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/apidocs/creators_factory.rst -------------------------------------------------------------------------------- /docs/source/documentation/apidocs/decl_wrappers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/apidocs/decl_wrappers.rst -------------------------------------------------------------------------------- /docs/source/documentation/apidocs/file_writers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/apidocs/file_writers.rst -------------------------------------------------------------------------------- /docs/source/documentation/apidocs/function_transformers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/apidocs/function_transformers.rst -------------------------------------------------------------------------------- /docs/source/documentation/apidocs/messages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/apidocs/messages.rst -------------------------------------------------------------------------------- /docs/source/documentation/apidocs/module_builder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/apidocs/module_builder.rst -------------------------------------------------------------------------------- /docs/source/documentation/apidocs/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/apidocs/utils.rst -------------------------------------------------------------------------------- /docs/source/documentation/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/architecture.rst -------------------------------------------------------------------------------- /docs/source/documentation/containers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/containers.rst -------------------------------------------------------------------------------- /docs/source/documentation/ctypes/ctypes_integration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/ctypes/ctypes_integration.rst -------------------------------------------------------------------------------- /docs/source/documentation/ctypes/this_and_sizeof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/ctypes/this_and_sizeof.rst -------------------------------------------------------------------------------- /docs/source/documentation/ctypes/unions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/ctypes/unions.rst -------------------------------------------------------------------------------- /docs/source/documentation/ctypes/variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/ctypes/variables.rst -------------------------------------------------------------------------------- /docs/source/documentation/doc_string.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/doc_string.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/call_policies/as_tuple.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/call_policies/as_tuple.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/call_policies/call_policies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/call_policies/call_policies.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/call_policies/custom_call_policies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/call_policies/custom_call_policies.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/call_policies/return_addressof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/call_policies/return_addressof.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/call_policies/return_pointee_value.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/call_policies/return_pointee_value.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/call_policies/return_range.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/call_policies/return_range.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/default_args.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/default_args.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/functions.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/make_constructor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/make_constructor.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/overloading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/overloading.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/registration_order.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/registration_order.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/from_address.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/from_address.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/inout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/inout.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/inout_static_array.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/inout_static_array.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/inout_static_matrix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/inout_static_matrix.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/input.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/input.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/input_c_buffer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/input_c_buffer.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/input_static_array.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/input_static_array.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/input_static_matrix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/input_static_matrix.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/modify_type.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/modify_type.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/name_mangling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/name_mangling.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/output.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/output.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/output_static_array.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/output_static_array.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/output_static_matrix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/output_static_matrix.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/terminology.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/terminology.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/transfer_ownership.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/transfer_ownership.rst -------------------------------------------------------------------------------- /docs/source/documentation/functions/transformation/transformation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/functions/transformation/transformation.rst -------------------------------------------------------------------------------- /docs/source/documentation/how_to/absolute_relative_paths.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/how_to/absolute_relative_paths.rst -------------------------------------------------------------------------------- /docs/source/documentation/how_to/best_practices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/how_to/best_practices.rst -------------------------------------------------------------------------------- /docs/source/documentation/how_to/exception_translation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/how_to/exception_translation.rst -------------------------------------------------------------------------------- /docs/source/documentation/how_to/fatal_error_c1204.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/how_to/fatal_error_c1204.rst -------------------------------------------------------------------------------- /docs/source/documentation/how_to/file_name_too_long.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/how_to/file_name_too_long.rst -------------------------------------------------------------------------------- /docs/source/documentation/how_to/hints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/how_to/hints.rst -------------------------------------------------------------------------------- /docs/source/documentation/how_to/how_to.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/how_to/how_to.rst -------------------------------------------------------------------------------- /docs/source/documentation/how_to/templates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/how_to/templates.rst -------------------------------------------------------------------------------- /docs/source/documentation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/index.rst -------------------------------------------------------------------------------- /docs/source/documentation/indexing_suite_v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/indexing_suite_v2.html -------------------------------------------------------------------------------- /docs/source/documentation/indexing_suite_v2.html.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/indexing_suite_v2.html.rst -------------------------------------------------------------------------------- /docs/source/documentation/indexing_suite_v2_files/boost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/indexing_suite_v2_files/boost.css -------------------------------------------------------------------------------- /docs/source/documentation/indexing_suite_v2_files/cboost.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/indexing_suite_v2_files/cboost.gif -------------------------------------------------------------------------------- /docs/source/documentation/indexing_suite_v2_files/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/indexing_suite_v2_files/overview.png -------------------------------------------------------------------------------- /docs/source/documentation/indexing_suite_v2_files/proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/indexing_suite_v2_files/proxy.png -------------------------------------------------------------------------------- /docs/source/documentation/indexing_suite_v2_files/proxy_detached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/indexing_suite_v2_files/proxy_detached.png -------------------------------------------------------------------------------- /docs/source/documentation/inserting_code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/inserting_code.rst -------------------------------------------------------------------------------- /docs/source/documentation/multi_module_development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/multi_module_development.rst -------------------------------------------------------------------------------- /docs/source/documentation/properties.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/properties.rst -------------------------------------------------------------------------------- /docs/source/documentation/split_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/split_module.rst -------------------------------------------------------------------------------- /docs/source/documentation/tutorials/module_builder/generate_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/tutorials/module_builder/generate_code.py -------------------------------------------------------------------------------- /docs/source/documentation/tutorials/module_builder/generate_code.py.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/tutorials/module_builder/generate_code.py.rst -------------------------------------------------------------------------------- /docs/source/documentation/tutorials/module_builder/generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/tutorials/module_builder/generated.cpp -------------------------------------------------------------------------------- /docs/source/documentation/tutorials/module_builder/generated.cpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/tutorials/module_builder/generated.cpp.rst -------------------------------------------------------------------------------- /docs/source/documentation/tutorials/module_builder/hello_world.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/tutorials/module_builder/hello_world.hpp -------------------------------------------------------------------------------- /docs/source/documentation/tutorials/module_builder/hello_world.hpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/tutorials/module_builder/hello_world.hpp.rst -------------------------------------------------------------------------------- /docs/source/documentation/tutorials/module_builder/module_builder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/tutorials/module_builder/module_builder.rst -------------------------------------------------------------------------------- /docs/source/documentation/tutorials/pyplusplus_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/tutorials/pyplusplus_gui.png -------------------------------------------------------------------------------- /docs/source/documentation/tutorials/pyplusplus_gui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/tutorials/pyplusplus_gui.rst -------------------------------------------------------------------------------- /docs/source/documentation/tutorials/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/tutorials/tutorials.rst -------------------------------------------------------------------------------- /docs/source/documentation/warnings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/documentation/warnings.rst -------------------------------------------------------------------------------- /docs/source/download.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/download.rst -------------------------------------------------------------------------------- /docs/source/examples/boost/boost.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/examples/boost/boost.rst -------------------------------------------------------------------------------- /docs/source/examples/easybmp/easybmp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/examples/easybmp/easybmp.rst -------------------------------------------------------------------------------- /docs/source/examples/easybmp/pkg-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/examples/easybmp/pkg-info.txt -------------------------------------------------------------------------------- /docs/source/examples/easybmp/source.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/examples/easybmp/source.bmp -------------------------------------------------------------------------------- /docs/source/examples/easybmp/target.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/examples/easybmp/target.bmp -------------------------------------------------------------------------------- /docs/source/examples/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/examples/examples.rst -------------------------------------------------------------------------------- /docs/source/history/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/history/history.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/links.rst -------------------------------------------------------------------------------- /docs/source/peps/dsl_challenge.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/peps/dsl_challenge.rst -------------------------------------------------------------------------------- /docs/source/peps/dsl_challenge_introduction.irest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/peps/dsl_challenge_introduction.irest -------------------------------------------------------------------------------- /docs/source/peps/peps_index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/peps/peps_index.rst -------------------------------------------------------------------------------- /docs/source/pkg-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/pkg-info.txt -------------------------------------------------------------------------------- /docs/source/pyplusplus_uml.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/pyplusplus_uml.vsd -------------------------------------------------------------------------------- /docs/source/quotes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/quotes.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/automatic_conversion/automatic_conversion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/automatic_conversion/automatic_conversion.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/automatic_conversion/automatic_conversion.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/automatic_conversion/automatic_conversion.zip -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/automatic_conversion/custom_rvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/automatic_conversion/custom_rvalue.cpp -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/automatic_conversion/custom_rvalue.cpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/automatic_conversion/custom_rvalue.cpp.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/automatic_conversion/definition.irest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/automatic_conversion/definition.irest -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/automatic_conversion/sconstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/automatic_conversion/sconstruct -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/automatic_conversion/sconstruct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/automatic_conversion/sconstruct.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/automatic_conversion/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/automatic_conversion/test.py -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/automatic_conversion/test.py.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/automatic_conversion/test.py.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/automatic_conversion/tuples.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/automatic_conversion/tuples.hpp -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/automatic_conversion/tuples.hpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/automatic_conversion/tuples.hpp.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/automatic_conversion/tuples_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/automatic_conversion/tuples_tester.cpp -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/automatic_conversion/tuples_tester.cpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/automatic_conversion/tuples_tester.cpp.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/easy_extending_guide/easy_extending_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/easy_extending_guide/easy_extending_guide.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/exceptions/definition.irest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/exceptions/definition.irest -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/exceptions/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/exceptions/exceptions.cpp -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/exceptions/exceptions.cpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/exceptions/exceptions.cpp.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/exceptions/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/exceptions/exceptions.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/exceptions/exceptions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/exceptions/exceptions.zip -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/exceptions/sconstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/exceptions/sconstruct -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/exceptions/sconstruct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/exceptions/sconstruct.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/exceptions/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/exceptions/test.py -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/exceptions/test.py.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/exceptions/test.py.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/lessons_learned.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/lessons_learned.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/shared_ptr/definition.irest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/shared_ptr/definition.irest -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/shared_ptr/generate_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/shared_ptr/generate_code.py -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/shared_ptr/pointer_holder.hpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/shared_ptr/pointer_holder.hpp.patch -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/shared_ptr/pointer_holder.hpp.patch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/shared_ptr/pointer_holder.hpp.patch.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/shared_ptr/sconstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/shared_ptr/sconstruct -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/shared_ptr/sconstruct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/shared_ptr/sconstruct.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/shared_ptr/shared_ptr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/shared_ptr/shared_ptr.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/shared_ptr/shared_ptr.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/shared_ptr/shared_ptr.zip -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/shared_ptr/solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/shared_ptr/solution.cpp -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/shared_ptr/solution.cpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/shared_ptr/solution.cpp.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/shared_ptr/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/shared_ptr/test.py -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/shared_ptr/test.py.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/shared_ptr/test.py.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/smart_ptrs/bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/smart_ptrs/bindings.cpp -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/smart_ptrs/bindings.cpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/smart_ptrs/bindings.cpp.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/smart_ptrs/classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/smart_ptrs/classes.hpp -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/smart_ptrs/classes.hpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/smart_ptrs/classes.hpp.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/smart_ptrs/definition.irest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/smart_ptrs/definition.irest -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/smart_ptrs/sconstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/smart_ptrs/sconstruct -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/smart_ptrs/sconstruct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/smart_ptrs/sconstruct.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/smart_ptrs/smart_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/smart_ptrs/smart_ptr.h -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/smart_ptrs/smart_ptr.h.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/smart_ptrs/smart_ptr.h.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/smart_ptrs/smart_ptrs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/smart_ptrs/smart_ptrs.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/smart_ptrs/smart_ptrs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/smart_ptrs/smart_ptrs.zip -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/smart_ptrs/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/smart_ptrs/test.py -------------------------------------------------------------------------------- /docs/source/troubleshooting_guide/smart_ptrs/test.py.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/docs/source/troubleshooting_guide/smart_ptrs/test.py.rst -------------------------------------------------------------------------------- /environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/environment.py -------------------------------------------------------------------------------- /environment_path_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/environment_path_helper.py -------------------------------------------------------------------------------- /examples/custom_code_creator/generate_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/custom_code_creator/generate_code.py -------------------------------------------------------------------------------- /examples/custom_code_creator/generated/properties.py.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/custom_code_creator/generated/properties.py.cpp -------------------------------------------------------------------------------- /examples/custom_code_creator/properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/custom_code_creator/properties.hpp -------------------------------------------------------------------------------- /examples/custom_code_creator/sconstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/custom_code_creator/sconstruct -------------------------------------------------------------------------------- /examples/custom_code_creator/unittests/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/custom_code_creator/unittests/test_all.py -------------------------------------------------------------------------------- /examples/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/environment.py -------------------------------------------------------------------------------- /examples/gmplib_dev/dev/generate_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/gmplib_dev/dev/generate_code.py -------------------------------------------------------------------------------- /examples/gmplib_dev/dev/project_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/gmplib_dev/dev/project_env.py -------------------------------------------------------------------------------- /examples/gmplib_dev/pygmplib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/gmplib_dev/pygmplib/__init__.py -------------------------------------------------------------------------------- /examples/gmplib_dev/pygmplib/ctypes_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/gmplib_dev/pygmplib/ctypes_utils.py -------------------------------------------------------------------------------- /examples/gmplib_dev/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/gmplib_dev/test.py -------------------------------------------------------------------------------- /examples/libmemcached_dev/dev/generate_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/libmemcached_dev/dev/generate_code.py -------------------------------------------------------------------------------- /examples/libmemcached_dev/dev/project_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/libmemcached_dev/dev/project_env.py -------------------------------------------------------------------------------- /examples/libmemcached_dev/libmemcached-0.31.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/libmemcached_dev/libmemcached-0.31.tar.gz -------------------------------------------------------------------------------- /examples/libmemcached_dev/pymemcached/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/libmemcached_dev/pymemcached/__init__.py -------------------------------------------------------------------------------- /examples/libmemcached_dev/pymemcached/ctypes_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/libmemcached_dev/pymemcached/ctypes_utils.py -------------------------------------------------------------------------------- /examples/libmemcached_dev/pymemcached/exposed_decl.pypp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/libmemcached_dev/pymemcached/exposed_decl.pypp.txt -------------------------------------------------------------------------------- /examples/libmemcached_dev/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/libmemcached_dev/test.py -------------------------------------------------------------------------------- /examples/pyboost_dev/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/MANIFEST.in -------------------------------------------------------------------------------- /examples/pyboost_dev/crc_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/crc_example.py -------------------------------------------------------------------------------- /examples/pyboost_dev/date_time_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/date_time_example.py -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/boost_random/generate_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/boost_random/generate_code.py -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/boost_random/random_export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/boost_random/random_export.hpp -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/boost_random/random_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/boost_random/random_settings.py -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/boost_random/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/boost_random/sconscript -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/crc/crc_export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/crc/crc_export.hpp -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/crc/crc_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/crc/crc_settings.py -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/crc/generate_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/crc/generate_code.py -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/crc/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/crc/sconscript -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/date_time/customization_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/date_time/customization_data.py -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/date_time/date_time_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/date_time/date_time_settings.py -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/date_time/generate_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/date_time/generate_code.py -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/date_time/include/date_time.pypp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/date_time/include/date_time.pypp.hpp -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/date_time/include/date_time.pypp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/date_time/include/date_time.pypp.xml -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/date_time/include/date_time_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/date_time/include/date_time_wrapper.hpp -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/date_time/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/date_time/sconscript -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/rational/generate_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/rational/generate_code.py -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/rational/rational_export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/rational/rational_export.hpp -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/rational/rational_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/rational/rational_settings.py -------------------------------------------------------------------------------- /examples/pyboost_dev/dev/rational/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/dev/rational/sconscript -------------------------------------------------------------------------------- /examples/pyboost_dev/pyboost/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/pyboost/__init__.py -------------------------------------------------------------------------------- /examples/pyboost_dev/pyboost/boost_random/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/pyboost/boost_random/__init__.py -------------------------------------------------------------------------------- /examples/pyboost_dev/pyboost/crc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/pyboost/crc/__init__.py -------------------------------------------------------------------------------- /examples/pyboost_dev/pyboost/date_time/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/pyboost/date_time/__init__.py -------------------------------------------------------------------------------- /examples/pyboost_dev/pyboost/date_time/date_time_zonespec.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/pyboost/date_time/date_time_zonespec.csv -------------------------------------------------------------------------------- /examples/pyboost_dev/pyboost/rational/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/pyboost/rational/__init__.py -------------------------------------------------------------------------------- /examples/pyboost_dev/random_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/random_example.py -------------------------------------------------------------------------------- /examples/pyboost_dev/rational_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/rational_example.py -------------------------------------------------------------------------------- /examples/pyboost_dev/sconstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/sconstruct -------------------------------------------------------------------------------- /examples/pyboost_dev/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/setup.py -------------------------------------------------------------------------------- /examples/pyboost_dev/unittestst/boost_random/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/unittestst/boost_random/test_all.py -------------------------------------------------------------------------------- /examples/pyboost_dev/unittestst/crc/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/unittestst/crc/test_all.py -------------------------------------------------------------------------------- /examples/pyboost_dev/unittestst/date_time/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/unittestst/date_time/examples.py -------------------------------------------------------------------------------- /examples/pyboost_dev/unittestst/date_time/gregorian_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/unittestst/date_time/gregorian_tester.py -------------------------------------------------------------------------------- /examples/pyboost_dev/unittestst/date_time/local_time_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/unittestst/date_time/local_time_tester.py -------------------------------------------------------------------------------- /examples/pyboost_dev/unittestst/date_time/posix_time_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/unittestst/date_time/posix_time_tester.py -------------------------------------------------------------------------------- /examples/pyboost_dev/unittestst/date_time/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/unittestst/date_time/test_all.py -------------------------------------------------------------------------------- /examples/pyboost_dev/unittestst/rational/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/unittestst/rational/test_all.py -------------------------------------------------------------------------------- /examples/pyboost_dev/unittestst/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyboost_dev/unittestst/test_all.py -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/boost.python/pyeasybmp/build_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/boost.python/pyeasybmp/build_setup.py -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/boost.python/pyeasybmp/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/boost.python/pyeasybmp/environment.py -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/boost.python/pyeasybmp/generate_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/boost.python/pyeasybmp/generate_code.py -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/boost.python/pyeasybmp/sconstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/boost.python/pyeasybmp/sconstruct -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/boost.python/unittests/grayscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/boost.python/unittests/grayscale.py -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/boost.python/unittests/source.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/boost.python/unittests/source.bmp -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/boost.python/unittests/target.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/boost.python/unittests/target.bmp -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/BSD_(revised)_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/BSD_(revised)_license.txt -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/EasyBMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/EasyBMP.cpp -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/EasyBMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/EasyBMP.h -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/EasyBMP_BMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/EasyBMP_BMP.h -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/EasyBMP_ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/EasyBMP_ChangeLog.txt -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/EasyBMP_DataStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/EasyBMP_DataStructures.h -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/EasyBMP_VariousBMPutilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/EasyBMP_VariousBMPutilities.h -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/binaries/easybmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/binaries/easybmp.dll -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/binaries/easybmp.dll.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/binaries/easybmp.dll.manifest -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/binaries/easybmp.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/binaries/easybmp.exp -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/binaries/easybmp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/binaries/easybmp.lib -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/binaries/easybmp.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/binaries/easybmp.map -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/sample/EasyBMPbackground.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/sample/EasyBMPbackground.bmp -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/sample/EasyBMPsample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/sample/EasyBMPsample.cpp -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/sample/EasyBMPtext.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/sample/EasyBMPtext.bmp -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/sample/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/sample/makefile -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/sconscript -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/easybmp/sconstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/easybmp/sconstruct -------------------------------------------------------------------------------- /examples/pyeasybmp_dev/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/examples/pyeasybmp_dev/environment.py -------------------------------------------------------------------------------- /indexing_suite_v2/docs/indexing_suite_v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/docs/indexing_suite_v2.html -------------------------------------------------------------------------------- /indexing_suite_v2/docs/indexing_suite_v2_files/boost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/docs/indexing_suite_v2_files/boost.css -------------------------------------------------------------------------------- /indexing_suite_v2/docs/indexing_suite_v2_files/cboost.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/docs/indexing_suite_v2_files/cboost.gif -------------------------------------------------------------------------------- /indexing_suite_v2/docs/indexing_suite_v2_files/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/docs/indexing_suite_v2_files/overview.png -------------------------------------------------------------------------------- /indexing_suite_v2/docs/indexing_suite_v2_files/proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/docs/indexing_suite_v2_files/proxy.png -------------------------------------------------------------------------------- /indexing_suite_v2/docs/indexing_suite_v2_files/proxy_detached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/docs/indexing_suite_v2_files/proxy_detached.png -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/algorithms.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/container_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/container_proxy.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/container_suite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/container_suite.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/container_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/container_traits.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/deque.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/element_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/element_proxy.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/element_proxy_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/element_proxy_traits.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/int_slice_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/int_slice_helper.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/iterator_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/iterator_range.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/iterator_traits.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/list.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/map.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/methods.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/methods.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/multimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/multimap.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/pair.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/proxy_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/proxy_iterator.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/python_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/python_iterator.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/registry_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/registry_utils.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/set.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/shared_proxy_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/shared_proxy_impl.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/slice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/slice.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/slice_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/slice_handler.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/suite_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/suite_utils.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/value_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/value_traits.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/vector.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/visitor.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/indexing_suite/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/indexing_suite/workaround.hpp -------------------------------------------------------------------------------- /indexing_suite_v2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/readme.txt -------------------------------------------------------------------------------- /indexing_suite_v2/update_code_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/indexing_suite_v2/update_code_repository.py -------------------------------------------------------------------------------- /pypp11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/__init__.py -------------------------------------------------------------------------------- /pypp11/_logging_/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/_logging_/__init__.py -------------------------------------------------------------------------------- /pypp11/_logging_/multi_line_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/_logging_/multi_line_formatter.py -------------------------------------------------------------------------------- /pypp11/code_creators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/__init__.py -------------------------------------------------------------------------------- /pypp11/code_creators/algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/algorithm.py -------------------------------------------------------------------------------- /pypp11/code_creators/array_1_registrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/array_1_registrator.py -------------------------------------------------------------------------------- /pypp11/code_creators/bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/bookmark.py -------------------------------------------------------------------------------- /pypp11/code_creators/calldef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/calldef.py -------------------------------------------------------------------------------- /pypp11/code_creators/calldef_ctypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/calldef_ctypes.py -------------------------------------------------------------------------------- /pypp11/code_creators/calldef_transformed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/calldef_transformed.py -------------------------------------------------------------------------------- /pypp11/code_creators/calldef_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/calldef_utils.py -------------------------------------------------------------------------------- /pypp11/code_creators/class_declaration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/class_declaration.py -------------------------------------------------------------------------------- /pypp11/code_creators/code_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/code_creator.py -------------------------------------------------------------------------------- /pypp11/code_creators/compound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/compound.py -------------------------------------------------------------------------------- /pypp11/code_creators/ctypes_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/ctypes_formatter.py -------------------------------------------------------------------------------- /pypp11/code_creators/ctypes_integration_creators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/ctypes_integration_creators.py -------------------------------------------------------------------------------- /pypp11/code_creators/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/custom.py -------------------------------------------------------------------------------- /pypp11/code_creators/declaration_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/declaration_based.py -------------------------------------------------------------------------------- /pypp11/code_creators/embedded_code_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/embedded_code_repository.py -------------------------------------------------------------------------------- /pypp11/code_creators/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/enum.py -------------------------------------------------------------------------------- /pypp11/code_creators/exception_translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/exception_translator.py -------------------------------------------------------------------------------- /pypp11/code_creators/global_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/global_variable.py -------------------------------------------------------------------------------- /pypp11/code_creators/include.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/include.py -------------------------------------------------------------------------------- /pypp11/code_creators/include_directories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/include_directories.py -------------------------------------------------------------------------------- /pypp11/code_creators/indexing_suites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/indexing_suites.py -------------------------------------------------------------------------------- /pypp11/code_creators/instruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/instruction.py -------------------------------------------------------------------------------- /pypp11/code_creators/library_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/library_reference.py -------------------------------------------------------------------------------- /pypp11/code_creators/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/license.py -------------------------------------------------------------------------------- /pypp11/code_creators/member_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/member_variable.py -------------------------------------------------------------------------------- /pypp11/code_creators/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/module.py -------------------------------------------------------------------------------- /pypp11/code_creators/module_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/module_body.py -------------------------------------------------------------------------------- /pypp11/code_creators/name_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/name_mappings.py -------------------------------------------------------------------------------- /pypp11/code_creators/namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/namespace.py -------------------------------------------------------------------------------- /pypp11/code_creators/opaque_type_registrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/opaque_type_registrator.py -------------------------------------------------------------------------------- /pypp11/code_creators/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/properties.py -------------------------------------------------------------------------------- /pypp11/code_creators/registration_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/registration_based.py -------------------------------------------------------------------------------- /pypp11/code_creators/scoped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/scoped.py -------------------------------------------------------------------------------- /pypp11/code_creators/smart_pointers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/smart_pointers.py -------------------------------------------------------------------------------- /pypp11/code_creators/target_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/target_configuration.py -------------------------------------------------------------------------------- /pypp11/code_creators/typedef_as_pyvar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/typedef_as_pyvar.py -------------------------------------------------------------------------------- /pypp11/code_creators/unnamed_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_creators/unnamed_enum.py -------------------------------------------------------------------------------- /pypp11/code_repository/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/__init__.py -------------------------------------------------------------------------------- /pypp11/code_repository/array_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/array_1.py -------------------------------------------------------------------------------- /pypp11/code_repository/call_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/call_policies.py -------------------------------------------------------------------------------- /pypp11/code_repository/convenience.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/convenience.py -------------------------------------------------------------------------------- /pypp11/code_repository/ctypes_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/ctypes_integration.py -------------------------------------------------------------------------------- /pypp11/code_repository/ctypes_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/ctypes_utils.py -------------------------------------------------------------------------------- /pypp11/code_repository/gil_guard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/gil_guard.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/__init__.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/algorithms_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/algorithms_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/container_proxy_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/container_proxy_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/container_suite_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/container_suite_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/container_traits_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/container_traits_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/deque_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/deque_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/element_proxy_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/element_proxy_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/element_proxy_traits_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/element_proxy_traits_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/int_slice_helper_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/int_slice_helper_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/iterator_range_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/iterator_range_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/iterator_traits_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/iterator_traits_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/list_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/list_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/map_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/map_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/methods_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/methods_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/multimap_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/multimap_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/pair_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/pair_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/proxy_iterator_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/proxy_iterator_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/python_iterator_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/python_iterator_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/registry_utils_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/registry_utils_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/set_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/set_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/shared_proxy_impl_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/shared_proxy_impl_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/slice_handler_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/slice_handler_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/slice_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/slice_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/suite_utils_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/suite_utils_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/value_traits_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/value_traits_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/vector_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/vector_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/visitor_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/visitor_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/indexing_suite/workaround_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/indexing_suite/workaround_header.py -------------------------------------------------------------------------------- /pypp11/code_repository/named_tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/named_tuple.py -------------------------------------------------------------------------------- /pypp11/code_repository/return_pointee_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/return_pointee_value.hpp -------------------------------------------------------------------------------- /pypp11/code_repository/return_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/code_repository/return_range.py -------------------------------------------------------------------------------- /pypp11/creators_factory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/creators_factory/__init__.py -------------------------------------------------------------------------------- /pypp11/creators_factory/bpcreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/creators_factory/bpcreator.py -------------------------------------------------------------------------------- /pypp11/creators_factory/call_policies_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/creators_factory/call_policies_resolver.py -------------------------------------------------------------------------------- /pypp11/creators_factory/creators_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/creators_factory/creators_wizard.py -------------------------------------------------------------------------------- /pypp11/creators_factory/ctypes_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/creators_factory/ctypes_creator.py -------------------------------------------------------------------------------- /pypp11/creators_factory/dependencies_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/creators_factory/dependencies_manager.py -------------------------------------------------------------------------------- /pypp11/creators_factory/fake_constructors_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/creators_factory/fake_constructors_manager.py -------------------------------------------------------------------------------- /pypp11/creators_factory/opaque_types_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/creators_factory/opaque_types_manager.py -------------------------------------------------------------------------------- /pypp11/creators_factory/pybind11_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/creators_factory/pybind11_creator.py -------------------------------------------------------------------------------- /pypp11/creators_factory/sort_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/creators_factory/sort_algorithms.py -------------------------------------------------------------------------------- /pypp11/creators_factory/types_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/creators_factory/types_database.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/__init__.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/algorithm.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/call_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/call_policies.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/calldef_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/calldef_wrapper.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/class_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/class_wrapper.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/decl_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/decl_wrapper.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/decl_wrapper_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/decl_wrapper_printer.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/doc_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/doc_extractor.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/enumeration_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/enumeration_wrapper.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/indexing_suite1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/indexing_suite1.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/indexing_suite2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/indexing_suite2.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/namespace_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/namespace_wrapper.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/properties.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/python_traits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/python_traits.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/scopedef_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/scopedef_wrapper.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/typedef_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/typedef_wrapper.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/user_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/user_text.py -------------------------------------------------------------------------------- /pypp11/decl_wrappers/variable_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/decl_wrappers/variable_wrapper.py -------------------------------------------------------------------------------- /pypp11/file_writers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/file_writers/__init__.py -------------------------------------------------------------------------------- /pypp11/file_writers/balanced_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/file_writers/balanced_files.py -------------------------------------------------------------------------------- /pypp11/file_writers/class_multiple_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/file_writers/class_multiple_files.py -------------------------------------------------------------------------------- /pypp11/file_writers/md5sum_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/file_writers/md5sum_repository.py -------------------------------------------------------------------------------- /pypp11/file_writers/multiple_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/file_writers/multiple_files.py -------------------------------------------------------------------------------- /pypp11/file_writers/single_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/file_writers/single_file.py -------------------------------------------------------------------------------- /pypp11/file_writers/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/file_writers/writer.py -------------------------------------------------------------------------------- /pypp11/function_transformers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/function_transformers/__init__.py -------------------------------------------------------------------------------- /pypp11/function_transformers/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/function_transformers/controllers.py -------------------------------------------------------------------------------- /pypp11/function_transformers/function_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/function_transformers/function_transformation.py -------------------------------------------------------------------------------- /pypp11/function_transformers/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/function_transformers/templates.py -------------------------------------------------------------------------------- /pypp11/function_transformers/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/function_transformers/transformer.py -------------------------------------------------------------------------------- /pypp11/function_transformers/transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/function_transformers/transformers.py -------------------------------------------------------------------------------- /pypp11/messages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/messages/__init__.py -------------------------------------------------------------------------------- /pypp11/messages/warnings_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/messages/warnings_.py -------------------------------------------------------------------------------- /pypp11/module_builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/module_builder/__init__.py -------------------------------------------------------------------------------- /pypp11/module_builder/boost_python_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/module_builder/boost_python_builder.py -------------------------------------------------------------------------------- /pypp11/module_builder/call_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/module_builder/call_policies.py -------------------------------------------------------------------------------- /pypp11/module_builder/ctypes_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/module_builder/ctypes_builder.py -------------------------------------------------------------------------------- /pypp11/module_builder/ctypes_decls_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/module_builder/ctypes_decls_dependencies.py -------------------------------------------------------------------------------- /pypp11/module_builder/module_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/module_builder/module_builder.py -------------------------------------------------------------------------------- /pypp11/module_builder/pybind11_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/module_builder/pybind11_builder.py -------------------------------------------------------------------------------- /pypp11/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/pypp11/utils/__init__.py -------------------------------------------------------------------------------- /scripts/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/scripts/freeze.py -------------------------------------------------------------------------------- /scripts/pyplusplus_gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/scripts/pyplusplus_gui -------------------------------------------------------------------------------- /scripts/pyplusplus_gui.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/scripts/pyplusplus_gui.pyw -------------------------------------------------------------------------------- /scripts/wrap_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/scripts/wrap_library.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/setup.py -------------------------------------------------------------------------------- /unit_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/__init__.py -------------------------------------------------------------------------------- /unit_tests/abstract_classes_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/abstract_classes_tester.py -------------------------------------------------------------------------------- /unit_tests/abstract_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/abstract_tester.py -------------------------------------------------------------------------------- /unit_tests/algorithms_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/algorithms_tester.py -------------------------------------------------------------------------------- /unit_tests/already_exposed_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/already_exposed_tester.py -------------------------------------------------------------------------------- /unit_tests/arrays_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/arrays_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/autoconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/autoconfig.py -------------------------------------------------------------------------------- /unit_tests/balanced_files_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/balanced_files_tester.py -------------------------------------------------------------------------------- /unit_tests/bool_by_ref_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/bool_by_ref_tester.py -------------------------------------------------------------------------------- /unit_tests/bpmodule_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/bpmodule_tester.py -------------------------------------------------------------------------------- /unit_tests/bug_covariant_returns_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/bug_covariant_returns_tester.py -------------------------------------------------------------------------------- /unit_tests/call_policies_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/call_policies_tester.py -------------------------------------------------------------------------------- /unit_tests/casting_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/casting_tester.py -------------------------------------------------------------------------------- /unit_tests/class_order2_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/class_order2_tester.py -------------------------------------------------------------------------------- /unit_tests/class_order3_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/class_order3_tester.py -------------------------------------------------------------------------------- /unit_tests/class_order4_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/class_order4_tester.py -------------------------------------------------------------------------------- /unit_tests/class_order_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/class_order_tester.py -------------------------------------------------------------------------------- /unit_tests/classes_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/classes_tester.py -------------------------------------------------------------------------------- /unit_tests/constructors_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/constructors_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/convenience_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/convenience_tester.py -------------------------------------------------------------------------------- /unit_tests/cp_return_addressof_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/cp_return_addressof_tester.py -------------------------------------------------------------------------------- /unit_tests/cppexceptions_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/cppexceptions_tester.py -------------------------------------------------------------------------------- /unit_tests/ctypes_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/ctypes_tester.py -------------------------------------------------------------------------------- /unit_tests/custom_smart_ptr_classes_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/custom_smart_ptr_classes_tester.py -------------------------------------------------------------------------------- /unit_tests/custom_string_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/custom_string_tester.py -------------------------------------------------------------------------------- /unit_tests/data/abstract_classes_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/abstract_classes_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/abstract_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/abstract_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/already_exposed_2to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/already_exposed_2to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/already_exposed_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/already_exposed_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/arrays_bug_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/arrays_bug_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/balanced_files_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/balanced_files_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/bool_by_ref_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/bool_by_ref_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/bpmodule_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/bpmodule_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/bug_covariant_returns_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/bug_covariant_returns_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/call_policies_to_be_exported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/call_policies_to_be_exported.cpp -------------------------------------------------------------------------------- /unit_tests/data/call_policies_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/call_policies_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/casting_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/casting_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/class_order2_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/class_order2_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/class_order3_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/class_order3_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/class_order4_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/class_order4_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/class_order_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/class_order_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/classes_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/classes_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/constructors_bug_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/constructors_bug_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/convenience_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/convenience_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/cp_return_addressof_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/cp_return_addressof_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/cppexceptions_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/cppexceptions_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/ctypes/anonymous/anonymous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/anonymous/anonymous.cpp -------------------------------------------------------------------------------- /unit_tests/data/ctypes/anonymous/anonymous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/anonymous/anonymous.h -------------------------------------------------------------------------------- /unit_tests/data/ctypes/anonymous/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/anonymous/sconscript -------------------------------------------------------------------------------- /unit_tests/data/ctypes/char_ptr_as_binary_data/char_ptr_as_binary_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/char_ptr_as_binary_data/char_ptr_as_binary_data.cpp -------------------------------------------------------------------------------- /unit_tests/data/ctypes/char_ptr_as_binary_data/char_ptr_as_binary_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/char_ptr_as_binary_data/char_ptr_as_binary_data.h -------------------------------------------------------------------------------- /unit_tests/data/ctypes/char_ptr_as_binary_data/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/char_ptr_as_binary_data/sconscript -------------------------------------------------------------------------------- /unit_tests/data/ctypes/circular_references/circular_references.cpp: -------------------------------------------------------------------------------- 1 | #include "circular_references.h" 2 | 3 | void use_bar( bar_t* ){ 4 | } 5 | -------------------------------------------------------------------------------- /unit_tests/data/ctypes/circular_references/circular_references.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/circular_references/circular_references.h -------------------------------------------------------------------------------- /unit_tests/data/ctypes/circular_references/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/circular_references/sconscript -------------------------------------------------------------------------------- /unit_tests/data/ctypes/enums/enums.cpp: -------------------------------------------------------------------------------- 1 | #include "enums.h" 2 | -------------------------------------------------------------------------------- /unit_tests/data/ctypes/enums/enums.h: -------------------------------------------------------------------------------- 1 | #include "enums_to_be_exported.hpp" 2 | 3 | -------------------------------------------------------------------------------- /unit_tests/data/ctypes/enums/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/enums/sconscript -------------------------------------------------------------------------------- /unit_tests/data/ctypes/function_ptr_as_variable/function_ptr_as_variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/function_ptr_as_variable/function_ptr_as_variable.cpp -------------------------------------------------------------------------------- /unit_tests/data/ctypes/function_ptr_as_variable/function_ptr_as_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/function_ptr_as_variable/function_ptr_as_variable.h -------------------------------------------------------------------------------- /unit_tests/data/ctypes/function_ptr_as_variable/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/function_ptr_as_variable/sconscript -------------------------------------------------------------------------------- /unit_tests/data/ctypes/include_algorithm/include_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/include_algorithm/include_algorithm.cpp -------------------------------------------------------------------------------- /unit_tests/data/ctypes/include_algorithm/include_algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/include_algorithm/include_algorithm.h -------------------------------------------------------------------------------- /unit_tests/data/ctypes/include_algorithm/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/include_algorithm/sconscript -------------------------------------------------------------------------------- /unit_tests/data/ctypes/opaque/opaque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/opaque/opaque.cpp -------------------------------------------------------------------------------- /unit_tests/data/ctypes/opaque/opaque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/opaque/opaque.h -------------------------------------------------------------------------------- /unit_tests/data/ctypes/opaque/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/opaque/sconscript -------------------------------------------------------------------------------- /unit_tests/data/ctypes/templates/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/templates/sconscript -------------------------------------------------------------------------------- /unit_tests/data/ctypes/templates/templates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/templates/templates.cpp -------------------------------------------------------------------------------- /unit_tests/data/ctypes/templates/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/templates/templates.h -------------------------------------------------------------------------------- /unit_tests/data/ctypes/user_code/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/user_code/sconscript -------------------------------------------------------------------------------- /unit_tests/data/ctypes/user_code/user_code.cpp: -------------------------------------------------------------------------------- 1 | #include "user_code.h" 2 | 3 | EXPORT_SYMBOL void init(){ 4 | } 5 | 6 | -------------------------------------------------------------------------------- /unit_tests/data/ctypes/user_code/user_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/user_code/user_code.h -------------------------------------------------------------------------------- /unit_tests/data/ctypes/varargs/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/varargs/sconscript -------------------------------------------------------------------------------- /unit_tests/data/ctypes/varargs/varargs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/varargs/varargs.cpp -------------------------------------------------------------------------------- /unit_tests/data/ctypes/varargs/varargs.h: -------------------------------------------------------------------------------- 1 | #include "libconfig.h" 2 | 3 | EXPORT_SYMBOL unsigned long sum_ints( int count, ... ); 4 | -------------------------------------------------------------------------------- /unit_tests/data/ctypes/variables/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/variables/sconscript -------------------------------------------------------------------------------- /unit_tests/data/ctypes/variables/variables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/variables/variables.cpp -------------------------------------------------------------------------------- /unit_tests/data/ctypes/variables/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ctypes/variables/variables.h -------------------------------------------------------------------------------- /unit_tests/data/custom_smart_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/custom_smart_ptr.h -------------------------------------------------------------------------------- /unit_tests/data/custom_smart_ptr_classes_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/custom_smart_ptr_classes_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/custom_string_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/custom_string_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/declarations_order_bug_false_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/declarations_order_bug_false_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/declarations_order_bug_true_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/declarations_order_bug_true_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/deepcopy_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/deepcopy_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/default_args_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/default_args_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/derive_from_deque_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/derive_from_deque_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/duplicate_aliases_to_be_exported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/duplicate_aliases_to_be_exported.cpp -------------------------------------------------------------------------------- /unit_tests/data/duplicate_aliases_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/duplicate_aliases_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/embeded_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/embeded_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/enums_exported_expected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/enums_exported_expected.hpp -------------------------------------------------------------------------------- /unit_tests/data/enums_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/enums_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/factory_to_be_exported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/factory_to_be_exported.cpp -------------------------------------------------------------------------------- /unit_tests/data/factory_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/factory_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/filesystem_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/filesystem_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/final_classes_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/final_classes_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/finalizables_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/finalizables_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/free_function_ignore_bug_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/free_function_ignore_bug_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/free_functions_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/free_functions_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/free_operators_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/free_operators_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/ft_constructor_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ft_constructor_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/ft_from_address_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ft_from_address_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/ft_inout_bugs_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ft_inout_bugs_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/ft_inout_static_array_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ft_inout_static_array_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/ft_inout_static_matrix_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ft_inout_static_matrix_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/ft_input_static_matrix_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ft_input_static_matrix_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/ft_output_static_matrix_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/ft_output_static_matrix_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/function_adaptor_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/function_adaptor_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/function_transformations_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/function_transformations_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/global_variables_to_be_exported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/global_variables_to_be_exported.cpp -------------------------------------------------------------------------------- /unit_tests/data/global_variables_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/global_variables_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/hierarchy3_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/hierarchy3_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/include_exclude_bug_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/include_exclude_bug_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/index_operator_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/index_operator_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/indexing_suite2_shared_ptr_value_traits_to_be_exported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/indexing_suite2_shared_ptr_value_traits_to_be_exported.cpp -------------------------------------------------------------------------------- /unit_tests/data/indexing_suite2_shared_ptr_value_traits_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/indexing_suite2_shared_ptr_value_traits_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/indexing_suite_v1_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/indexing_suite_v1_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/indexing_suites2_support_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/indexing_suites2_support_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/indexing_suites2_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/indexing_suites2_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/indexing_suites_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/indexing_suites_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/indexing_suites_v2_bug_a_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/indexing_suites_v2_bug_a_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/indexing_suites_v2_bug_b_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/indexing_suites_v2_bug_b_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/inner_base_class_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/inner_base_class_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/inner_class_bug_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/inner_class_bug_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/inner_tmpl_class_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/inner_tmpl_class_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/internal_classes_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/internal_classes_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/libconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/libconfig.h -------------------------------------------------------------------------------- /unit_tests/data/mailing_list_help_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/mailing_list_help_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/make_constructor_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/make_constructor_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/mem_fun_with_exception_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/mem_fun_with_exception_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/mem_var_compile_error_bug_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/mem_var_compile_error_bug_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/member_functions_to_be_exported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/member_functions_to_be_exported.cpp -------------------------------------------------------------------------------- /unit_tests/data/member_functions_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/member_functions_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/member_variables_to_be_exported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/member_variables_to_be_exported.cpp -------------------------------------------------------------------------------- /unit_tests/data/member_variables_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/member_variables_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/module_body_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/module_body_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/namespaces_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/namespaces_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/no_init_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/no_init_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/non_overridable_to_be_exported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/non_overridable_to_be_exported.cpp -------------------------------------------------------------------------------- /unit_tests/data/non_overridable_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/non_overridable_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/noncopyable_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/noncopyable_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/operators_bug_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/operators_bug_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/operators_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/operators_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/optional_bug_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/optional_bug_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/optional_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/optional_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/overloads_macro_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/overloads_macro_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/override_bug_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/override_bug_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/overriden_virtual_functions_bug_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/overriden_virtual_functions_bug_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/particleuniverse.xml.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/particleuniverse.xml.bz2 -------------------------------------------------------------------------------- /unit_tests/data/pointer_as_arg_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/pointer_as_arg_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/pointer_to_function_as_argument_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/pointer_to_function_as_argument_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/precompiled_header_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/precompiled_header_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/private_assign_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/private_assign_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/properties_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/properties_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/protected_bug_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/protected_bug_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/protected_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/protected_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/recursive_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/recursive_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/refee_refer_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/refee_refer_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/regression1_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/regression1_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/regression2_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/regression2_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/regression3_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/regression3_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/return_auto_ptr_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/return_auto_ptr_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/return_ref_to_ptr_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/return_ref_to_ptr_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/selection_bug_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/selection_bug_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/smart_pointers_to_be_exported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/smart_pointers_to_be_exported.cpp -------------------------------------------------------------------------------- /unit_tests/data/smart_pointers_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/smart_pointers_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/special_operators_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/special_operators_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/split_module_bug_to_be_exported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/split_module_bug_to_be_exported.cpp -------------------------------------------------------------------------------- /unit_tests/data/split_module_bug_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/split_module_bug_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/split_module_indexing_suite_bug_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/split_module_indexing_suite_bug_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/split_module_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/split_module_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/statics_to_be_exported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/statics_to_be_exported.cpp -------------------------------------------------------------------------------- /unit_tests/data/statics_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/statics_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/std_pair_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/std_pair_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/templates_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/templates_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/temporary_variable_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/temporary_variable_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/throw_to_be_exported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/throw_to_be_exported.cpp -------------------------------------------------------------------------------- /unit_tests/data/throw_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/throw_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/tnfox_bugs_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/tnfox_bugs_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/transfer_ownership_old_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/transfer_ownership_old_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/transfer_ownership_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/transfer_ownership_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/unions_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/unions_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/unnamed_classes_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/unnamed_classes_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/unnamed_enums_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/unnamed_enums_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/user_text_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/user_text_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/vector3_to_be_exported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/vector3_to_be_exported.cpp -------------------------------------------------------------------------------- /unit_tests/data/vector3_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/vector3_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/vector_with_shared_data_to_be_exported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/vector_with_shared_data_to_be_exported.cpp -------------------------------------------------------------------------------- /unit_tests/data/vector_with_shared_data_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/vector_with_shared_data_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/data/virtual_inheritance_to_be_exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/data/virtual_inheritance_to_be_exported.hpp -------------------------------------------------------------------------------- /unit_tests/declarations_order_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/declarations_order_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/deepcopy_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/deepcopy_tester.py -------------------------------------------------------------------------------- /unit_tests/default_args_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/default_args_tester.py -------------------------------------------------------------------------------- /unit_tests/derive_from_deque_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/derive_from_deque_tester.py -------------------------------------------------------------------------------- /unit_tests/duplicate_aliases_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/duplicate_aliases_tester.py -------------------------------------------------------------------------------- /unit_tests/dwrapper_printer_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/dwrapper_printer_tester.py -------------------------------------------------------------------------------- /unit_tests/embeded_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/embeded_tester.py -------------------------------------------------------------------------------- /unit_tests/enums_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/enums_tester.py -------------------------------------------------------------------------------- /unit_tests/exposed_decls_db_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/exposed_decls_db_tester.py -------------------------------------------------------------------------------- /unit_tests/factory_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/factory_tester.py -------------------------------------------------------------------------------- /unit_tests/final_classes_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/final_classes_tester.py -------------------------------------------------------------------------------- /unit_tests/finalizables_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/finalizables_tester.py -------------------------------------------------------------------------------- /unit_tests/free_function_ignore_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/free_function_ignore_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/free_functions_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/free_functions_tester.py -------------------------------------------------------------------------------- /unit_tests/free_operators_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/free_operators_tester.py -------------------------------------------------------------------------------- /unit_tests/ft_from_address_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/ft_from_address_tester.py -------------------------------------------------------------------------------- /unit_tests/ft_inout_static_array_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/ft_inout_static_array_tester.py -------------------------------------------------------------------------------- /unit_tests/ft_inout_static_matrix_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/ft_inout_static_matrix_tester.py -------------------------------------------------------------------------------- /unit_tests/ft_inout_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/ft_inout_tester.py -------------------------------------------------------------------------------- /unit_tests/ft_input_static_matrix_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/ft_input_static_matrix_tester.py -------------------------------------------------------------------------------- /unit_tests/ft_output_static_matrix_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/ft_output_static_matrix_tester.py -------------------------------------------------------------------------------- /unit_tests/function_adaptor_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/function_adaptor_tester.py -------------------------------------------------------------------------------- /unit_tests/function_transformations_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/function_transformations_tester.py -------------------------------------------------------------------------------- /unit_tests/fundamental_tester_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/fundamental_tester_base.py -------------------------------------------------------------------------------- /unit_tests/gccxml.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/gccxml.cfg -------------------------------------------------------------------------------- /unit_tests/global_variables_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/global_variables_tester.py -------------------------------------------------------------------------------- /unit_tests/gui_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/gui_tester.py -------------------------------------------------------------------------------- /unit_tests/gui_wizard_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/gui_wizard_tester.py -------------------------------------------------------------------------------- /unit_tests/hierarchy3_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/hierarchy3_tester.py -------------------------------------------------------------------------------- /unit_tests/include_exclude_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/include_exclude_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/index_operator_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/index_operator_tester.py -------------------------------------------------------------------------------- /unit_tests/indexing_suite2_shared_ptr_value_traits_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/indexing_suite2_shared_ptr_value_traits_tester.py -------------------------------------------------------------------------------- /unit_tests/indexing_suite_v1_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/indexing_suite_v1_tester.py -------------------------------------------------------------------------------- /unit_tests/indexing_suites2_support_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/indexing_suites2_support_tester.py -------------------------------------------------------------------------------- /unit_tests/indexing_suites2_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/indexing_suites2_tester.py -------------------------------------------------------------------------------- /unit_tests/indexing_suites_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/indexing_suites_tester.py -------------------------------------------------------------------------------- /unit_tests/indexing_suites_v2_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/indexing_suites_v2_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/inner_base_class_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/inner_base_class_tester.py -------------------------------------------------------------------------------- /unit_tests/inner_class_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/inner_class_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/inner_tmpl_class_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/inner_tmpl_class_tester.py -------------------------------------------------------------------------------- /unit_tests/internal_classes_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/internal_classes_tester.py -------------------------------------------------------------------------------- /unit_tests/mailing_list_help_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/mailing_list_help_tester.py -------------------------------------------------------------------------------- /unit_tests/make_constructor_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/make_constructor_tester.py -------------------------------------------------------------------------------- /unit_tests/mdecl_wrapper_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/mdecl_wrapper_tester.py -------------------------------------------------------------------------------- /unit_tests/mem_fun_with_exception_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/mem_fun_with_exception_tester.py -------------------------------------------------------------------------------- /unit_tests/mem_var_compile_error_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/mem_var_compile_error_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/member_functions_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/member_functions_tester.py -------------------------------------------------------------------------------- /unit_tests/member_variables_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/member_variables_tester.py -------------------------------------------------------------------------------- /unit_tests/module_body_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/module_body_tester.py -------------------------------------------------------------------------------- /unit_tests/module_properties_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/module_properties_tester.py -------------------------------------------------------------------------------- /unit_tests/namespaces_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/namespaces_tester.py -------------------------------------------------------------------------------- /unit_tests/no_init_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/no_init_tester.py -------------------------------------------------------------------------------- /unit_tests/non_overridable_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/non_overridable_tester.py -------------------------------------------------------------------------------- /unit_tests/noncopyable_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/noncopyable_tester.py -------------------------------------------------------------------------------- /unit_tests/ogre_generate_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/ogre_generate_tester.py -------------------------------------------------------------------------------- /unit_tests/operators_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/operators_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/operators_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/operators_tester.py -------------------------------------------------------------------------------- /unit_tests/optional_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/optional_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/optional_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/optional_tester.py -------------------------------------------------------------------------------- /unit_tests/overloads_macro_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/overloads_macro_tester.py -------------------------------------------------------------------------------- /unit_tests/override_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/override_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/overriden_virtual_functions_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/overriden_virtual_functions_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/particle_universe_generate_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/particle_universe_generate_tester.py -------------------------------------------------------------------------------- /unit_tests/pointer_as_arg_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/pointer_as_arg_tester.py -------------------------------------------------------------------------------- /unit_tests/pointer_to_function_as_argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/pointer_to_function_as_argument.py -------------------------------------------------------------------------------- /unit_tests/precompiled_header_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/precompiled_header_tester.py -------------------------------------------------------------------------------- /unit_tests/private_assign_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/private_assign_tester.py -------------------------------------------------------------------------------- /unit_tests/properties_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/properties_tester.py -------------------------------------------------------------------------------- /unit_tests/protected_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/protected_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/protected_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/protected_tester.py -------------------------------------------------------------------------------- /unit_tests/recursive_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/recursive_tester.py -------------------------------------------------------------------------------- /unit_tests/refee_refer_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/refee_refer_tester.py -------------------------------------------------------------------------------- /unit_tests/regression1_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/regression1_tester.py -------------------------------------------------------------------------------- /unit_tests/regression2_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/regression2_tester.py -------------------------------------------------------------------------------- /unit_tests/regression3_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/regression3_tester.py -------------------------------------------------------------------------------- /unit_tests/return_auto_ptr_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/return_auto_ptr_tester.py -------------------------------------------------------------------------------- /unit_tests/return_ref_to_ptr_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/return_ref_to_ptr_tester.py -------------------------------------------------------------------------------- /unit_tests/sconstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/sconstruct -------------------------------------------------------------------------------- /unit_tests/selection_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/selection_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/smart_pointers_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/smart_pointers_tester.py -------------------------------------------------------------------------------- /unit_tests/special_operators_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/special_operators_tester.py -------------------------------------------------------------------------------- /unit_tests/split_module_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/split_module_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/split_module_indexing_suite_bug_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/split_module_indexing_suite_bug_tester.py -------------------------------------------------------------------------------- /unit_tests/split_module_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/split_module_tester.py -------------------------------------------------------------------------------- /unit_tests/statics_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/statics_tester.py -------------------------------------------------------------------------------- /unit_tests/std_pair_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/std_pair_tester.py -------------------------------------------------------------------------------- /unit_tests/templates_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/templates_tester.py -------------------------------------------------------------------------------- /unit_tests/temporary_variable_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/temporary_variable_tester.py -------------------------------------------------------------------------------- /unit_tests/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/test_all.py -------------------------------------------------------------------------------- /unit_tests/throw_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/throw_tester.py -------------------------------------------------------------------------------- /unit_tests/tnfox_bugs_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/tnfox_bugs_tester.py -------------------------------------------------------------------------------- /unit_tests/transfer_ownership_old_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/transfer_ownership_old_tester.py -------------------------------------------------------------------------------- /unit_tests/transfer_ownership_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/transfer_ownership_tester.py -------------------------------------------------------------------------------- /unit_tests/unicode_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/unicode_bug.py -------------------------------------------------------------------------------- /unit_tests/unions_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/unions_tester.py -------------------------------------------------------------------------------- /unit_tests/unnamed_classes_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/unnamed_classes_tester.py -------------------------------------------------------------------------------- /unit_tests/unnamed_enums_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/unnamed_enums_tester.py -------------------------------------------------------------------------------- /unit_tests/user_text_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/user_text_tester.py -------------------------------------------------------------------------------- /unit_tests/vector3_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/vector3_tester.py -------------------------------------------------------------------------------- /unit_tests/vector_with_shared_data_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/vector_with_shared_data_tester.py -------------------------------------------------------------------------------- /unit_tests/virtual_inheritance_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISoirar/pypp11/HEAD/unit_tests/virtual_inheritance_tester.py --------------------------------------------------------------------------------