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

Function init

api/python/src/ObjC/init.cpp:18–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16
17namespace LIEF::objc::py {
18void init(nb::module_& m) {
19 nb::module_ objc = m.def_submodule("objc");
20
21 create<LIEF::objc::DeclOpt>(objc);
22 create<LIEF::objc::Metadata>(objc);
23 create<LIEF::objc::Class>(objc);
24 create<LIEF::objc::IVar>(objc);
25 create<LIEF::objc::Protocol>(objc);
26 create<LIEF::objc::Method>(objc);
27 create<LIEF::objc::Property>(objc);
28}
29}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected