mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
e9782c5927
This commit (obviously non-atomic) cleans LIEF's code base by: - Using pointer semantics (`std::unique_ptr<>`) - Using LEAF boost error in the binary stream - Reducing the scope of the iterators (`it_section`, ...) - Removing `Structures.hpp` from the public headers - etc
7 lines
138 B
C++
7 lines
138 B
C++
#include "pyLIEF.hpp"
|
|
#include "LIEF/Object.hpp"
|
|
|
|
void init_LIEF_Object_class(py::module& m) {
|
|
py::class_<LIEF::Object>(m, "Object");
|
|
}
|