| 7 | namespace LIEF::pdb::py { |
| 8 | template<> |
| 9 | void create<pdb::types::Method>(nb::module_& m) { |
| 10 | nb::class_<pdb::types::Method> type(m, "Method", |
| 11 | R"doc( |
| 12 | This class represents a Method (``LF_ONEMETHOD``) that can be defined in |
| 13 | ClassLike PDB type |
| 14 | )doc"_doc |
| 15 | ); |
| 16 | |
| 17 | type |
| 18 | .def_prop_ro("name", &pdb::types::Method::name, |
| 19 | R"doc( |
| 20 | Name of the method |
| 21 | )doc"_doc |
| 22 | ) |
| 23 | ; |
| 24 | } |
| 25 | |
| 26 | } |
nothing calls this directly
no outgoing calls
no test coverage detected