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

Method Modifier>

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected