mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 16:13:53 +00:00
62 lines
1.7 KiB
C++
62 lines
1.7 KiB
C++
#include "pybind11_tests.h"
|
|
|
|
#include <pybind11/classh.h>
|
|
|
|
#include <memory>
|
|
|
|
namespace pybind11_tests {
|
|
namespace unique_ptr_member {
|
|
|
|
class pointee { // NOT copyable.
|
|
public:
|
|
pointee() = default;
|
|
|
|
int get_int() const { return 213; }
|
|
|
|
private:
|
|
pointee(const pointee &) = delete;
|
|
pointee(pointee &&) = delete;
|
|
pointee &operator=(const pointee &) = delete;
|
|
pointee &operator=(pointee &&) = delete;
|
|
};
|
|
|
|
inline std::unique_ptr<pointee> make_unique_pointee() {
|
|
return std::unique_ptr<pointee>(new pointee);
|
|
}
|
|
|
|
class ptr_owner {
|
|
public:
|
|
explicit ptr_owner(std::unique_ptr<pointee> ptr) : ptr_(std::move(ptr)) {}
|
|
|
|
bool is_owner() const { return bool(ptr_); }
|
|
|
|
std::unique_ptr<pointee> give_up_ownership_via_unique_ptr() { return std::move(ptr_); }
|
|
std::shared_ptr<pointee> give_up_ownership_via_shared_ptr() { return std::move(ptr_); }
|
|
|
|
private:
|
|
std::unique_ptr<pointee> ptr_;
|
|
};
|
|
|
|
} // namespace unique_ptr_member
|
|
} // namespace pybind11_tests
|
|
|
|
PYBIND11_CLASSH_TYPE_CASTERS(pybind11_tests::unique_ptr_member::pointee)
|
|
|
|
namespace pybind11_tests {
|
|
namespace unique_ptr_member {
|
|
|
|
TEST_SUBMODULE(unique_ptr_member, m) {
|
|
py::classh<pointee>(m, "pointee").def(py::init<>()).def("get_int", &pointee::get_int);
|
|
|
|
m.def("make_unique_pointee", make_unique_pointee);
|
|
|
|
py::class_<ptr_owner>(m, "ptr_owner")
|
|
.def(py::init<std::unique_ptr<pointee>>(), py::arg("ptr"))
|
|
.def("is_owner", &ptr_owner::is_owner)
|
|
.def("give_up_ownership_via_unique_ptr", &ptr_owner::give_up_ownership_via_unique_ptr)
|
|
.def("give_up_ownership_via_shared_ptr", &ptr_owner::give_up_ownership_via_shared_ptr);
|
|
}
|
|
|
|
} // namespace unique_ptr_member
|
|
} // namespace pybind11_tests
|