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