mirror of
https://github.com/QuasarApp/LIEF.git
synced 2025-04-28 13:24:32 +00:00
* JSON visitor are located in the format namespace * Visitor are *real* visitor * Visitable class has been renamed to Object * Due to a bug in Visual Studio 2015, we move to VS2017
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");
|
|
}
|