| 7 | namespace LIEF::dwarf::py { |
| 8 | template<> |
| 9 | void create<dw::types::PointerToMember>(nb::module_& m) { |
| 10 | nb::class_<dw::types::PointerToMember, dw::Type> type(m, "PointerToMember", |
| 11 | R"doc( |
| 12 | This class represents the ``DW_TAG_ptr_to_member_type`` type |
| 13 | )doc"_doc |
| 14 | ); |
| 15 | |
| 16 | type |
| 17 | .def_prop_ro("underlying_type", &dw::types::PointerToMember::underlying_type, |
| 18 | R"doc( |
| 19 | The type of the member referenced by this pointer. |
| 20 | )doc"_doc |
| 21 | ) |
| 22 | .def_prop_ro("containing_type", &dw::types::PointerToMember::containing_type, |
| 23 | R"doc( |
| 24 | The type that embeds this member. |
| 25 | )doc"_doc |
| 26 | ) |
| 27 | ; |
| 28 | } |
| 29 | |
| 30 | } |
nothing calls this directly
no outgoing calls
no test coverage detected