| 7 | namespace LIEF::pdb::py { |
| 8 | template<> |
| 9 | void create<pdb::types::Pointer>(nb::module_& m) { |
| 10 | nb::class_<pdb::types::Pointer, pdb::Type> type(m, "Pointer", |
| 11 | R"doc( |
| 12 | This class represents a ``LF_POINTER`` PDB type |
| 13 | )doc"_doc |
| 14 | ); |
| 15 | |
| 16 | type |
| 17 | .def_prop_ro("underlying_type", &pdb::types::Pointer::underlying_type, |
| 18 | R"doc( |
| 19 | The underlying type pointed by this pointer |
| 20 | )doc"_doc |
| 21 | ) |
| 22 | ; |
| 23 | } |
| 24 | |
| 25 | } |
nothing calls this directly
no outgoing calls
no test coverage detected