self.__cpp_transporter__() proof of concept: Enable passing C++ pointers across extensions even if the PYBIND11_INTERNALS_VERSIONs do not match.

This commit is contained in:
Ralf W. Grosse-Kunstleve
2024-08-11 09:19:51 -07:00
parent 898794488a
commit 3f522e5a92
10 changed files with 186 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
#include "pybind11_tests.h"
#include "test_cpp_transporter_traveler_bindings.h"
TEST_SUBMODULE(cpp_transporter, m) { pybind11_tests::test_cpp_transporter::wrap_traveler(m); }