Files
lief-project-LIEF/api/python/pyObject.cpp
T
Romain Thomas e9782c5927 Clean & modernize LIEF code base
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
2022-02-05 06:09:06 +01:00

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");
}