MCPcopy Create free account
hub / github.com/lief-project/LIEF / Method>

Method Method>

api/python/src/PDB/types/pyMethod.cpp:9–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7namespace LIEF::pdb::py {
8template<>
9void 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected