Resolve #119 and enhance ELF Python bindings

This commit is contained in:
Romain Thomas
2018-06-08 10:48:29 +02:00
parent 163cd3bcc9
commit cd1cc457cf
63 changed files with 405 additions and 183 deletions
@@ -23,13 +23,18 @@
#include <string>
#include <sstream>
namespace LIEF {
namespace ELF {
template<class T>
using getter_t = T (DynamicEntryRpath::*)(void) const;
template<class T>
using setter_t = void (DynamicEntryRpath::*)(T);
void init_ELF_DynamicEntryRpath_class(py::module& m) {
template<>
void create<DynamicEntryRpath>(py::module& m) {
//
// Dynamic Entry RPATH object
@@ -102,3 +107,6 @@ void init_ELF_DynamicEntryRpath_class(py::module& m) {
return str;
});
}
}
}