Skip to content Skip to sidebar Skip to footer
Showing posts with the label Pybind11

Pybind11: Transfer Class Ownership To C++ On Construct

I'm having an issue where a python class, which is derived from a c++ base class using pybind11… Read more Pybind11: Transfer Class Ownership To C++ On Construct

Cmake Pybind11 Cannot Create Target Because Another Target With The Same Name Already Exists, How To Bypass?

I have code which successfully runs. Its CmakeLists.txt is: cmake_minimum_required(VERSION 3.15) pr… Read more Cmake Pybind11 Cannot Create Target Because Another Target With The Same Name Already Exists, How To Bypass?

C++ Smart Pointer To External Managed (e.g: Python) Resources?

Is there a smart pointer in C++ to a resource managed by others? I am using pybind11 to wrap C++ c… Read more C++ Smart Pointer To External Managed (e.g: Python) Resources?