mirror of
https://github.com/QuasarApp/LIEF.git
synced 2025-04-30 06:14:37 +00:00
6 lines
111 B
C++
6 lines
111 B
C++
|
#include "pyLIEF.hpp"
|
||
|
|
||
|
void init_LIEF_Object_class(py::module& m) {
|
||
|
py::class_<LIEF::Object>(m, "Object");
|
||
|
}
|