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

Method Shared>

api/python/src/DWARF/types/pyShared.cpp:7–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5namespace LIEF::dwarf::py {
6template<>
7void create<dw::types::Shared>(nb::module_& m) {
8 nb::class_<dw::types::Shared, dw::Type> type(m, "Shared",
9 R"doc(
10 This class represents the ``DW_TAG_shared_type`` type
11 )doc"_doc
12 );
13
14 type
15 .def_prop_ro("underlying_type", &dw::types::Shared::underlying_type,
16 R"doc(
17 The underlying type referenced by this shared-type.
18 )doc"_doc
19 )
20 ;
21}
22
23}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected