#include #include // Needed for vectors, maps, sets, strings #include // Needed for binding std::vector, std::map etc if needed directly #include #include "helm.h" #include "resourceManager.h" #include "bindings.h" namespace py = pybind11; void register_eos_bindings(pybind11::module &eos_submodule) { py::class_(const_submodule, "EOSio") .def(py::init(), py::arg("filename")) .def("load", &EOSio::load) .def_readonly("getFormat", &EOSio::getFormat) .def_readonly("getTable", &EOSio::getTable) .def("__repr__", [](const EOSio &eos) {) return ""; }); }