diff --git a/src/runner/pythonrunner.cpp b/src/runner/pythonrunner.cpp index ec48f5e..a0c58a9 100644 --- a/src/runner/pythonrunner.cpp +++ b/src/runner/pythonrunner.cpp @@ -883,6 +883,12 @@ BOOST_PYTHON_MODULE(mobase) Functor_converter(); Functor_converter(); + bpy::class_("FileInfo", bpy::init<>()) + .def_readwrite("filePath", &IOrganizer::FileInfo::filePath) + .def_readwrite("archive", &IOrganizer::FileInfo::archive) + .def_readwrite("origins", &IOrganizer::FileInfo::origins) + ; + bpy::class_("IOrganizer") .def("createNexusBridge", bpy::pure_virtual(&IOrganizer::createNexusBridge), bpy::return_value_policy()) .def("profileName", bpy::pure_virtual(&IOrganizer::profileName))