mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-13 09:03:54 +00:00
41 lines
1006 B
C++
41 lines
1006 B
C++
|
#include <pybind11/smart_holder.h>
|
||
|
|
||
|
#include "pybind11_tests.h"
|
||
|
|
||
|
#include <memory>
|
||
|
|
||
|
namespace pybind11_tests {
|
||
|
namespace class_sh_unique_ptr_custom_deleter {
|
||
|
|
||
|
// Reduced from a PyCLIF use case in the wild by @wangxf123456.
|
||
|
class Pet {
|
||
|
public:
|
||
|
using Ptr = std::unique_ptr<Pet, std::function<void(Pet *)>>;
|
||
|
|
||
|
std::string name;
|
||
|
|
||
|
static Ptr New(const std::string &name) {
|
||
|
return Ptr(new Pet(name), std::default_delete<Pet>());
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
explicit Pet(const std::string &name) : name(name) {}
|
||
|
};
|
||
|
|
||
|
} // namespace class_sh_unique_ptr_custom_deleter
|
||
|
} // namespace pybind11_tests
|
||
|
|
||
|
PYBIND11_SMART_HOLDER_TYPE_CASTERS(pybind11_tests::class_sh_unique_ptr_custom_deleter::Pet)
|
||
|
|
||
|
namespace pybind11_tests {
|
||
|
namespace class_sh_unique_ptr_custom_deleter {
|
||
|
|
||
|
TEST_SUBMODULE(class_sh_unique_ptr_custom_deleter, m) {
|
||
|
py::classh<Pet>(m, "Pet").def_readwrite("name", &Pet::name);
|
||
|
|
||
|
m.def("create", &Pet::New);
|
||
|
}
|
||
|
|
||
|
} // namespace class_sh_unique_ptr_custom_deleter
|
||
|
} // namespace pybind11_tests
|