1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#include <pybind11/pybind11.h>
#include "export.hpp"
void python::common::export_all(py::module& module) {
export_ParseContext(module);
export_Parser(module);
export_Deck(module);
export_DeckKeyword(module);
export_Schedule(module);
export_Well(module);
export_Group(module);
export_Connection(module);
export_EclipseConfig(module);
export_FieldProperties(module);
export_EclipseState(module);
export_TableManager(module);
export_EclipseGrid(module);
export_UnitSystem(module);
export_Log(module);
export_IO(module);
export_EModel(module);
export_SummaryState(module);
export_ParserKeywords(module);
}
PYBIND11_MODULE(libopmcommon_python, module) {
python::common::export_all(module);
}
|