mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
This commit cleans and modernizes the code base of LIEF.
Among the changes: - It removes the ``and, or, not`` keywords - It updates the Documentation - It moves the internal structures in the ``details::`` namespace
This commit is contained in:
@@ -34,7 +34,8 @@ using setter_t = void (LoadCommand::*)(T);
|
||||
template<>
|
||||
void create<LoadCommand>(py::module& m) {
|
||||
|
||||
py::class_<LoadCommand, LIEF::Object>(m, "LoadCommand")
|
||||
py::class_<LoadCommand, LIEF::Object>(m, "LoadCommand",
|
||||
"Based class for the Mach-O load commands")
|
||||
.def(py::init<>())
|
||||
|
||||
.def_property("command",
|
||||
|
||||
Reference in New Issue
Block a user