2018-01-30 07:46:03 +01:00
|
|
|
#include <pybind11/pybind11.h>
|
2019-09-13 09:40:13 +02:00
|
|
|
#include "export.hpp"
|
2016-11-25 16:33:45 +01:00
|
|
|
|
2019-09-13 09:22:49 +02:00
|
|
|
|
|
|
|
|
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);
|
2019-12-19 10:54:42 +01:00
|
|
|
export_FieldProperties(module);
|
2019-09-13 09:22:49 +02:00
|
|
|
export_EclipseState(module);
|
|
|
|
|
export_TableManager(module);
|
|
|
|
|
export_EclipseGrid(module);
|
2019-10-11 22:40:35 +02:00
|
|
|
export_UnitSystem(module);
|
2019-09-16 18:33:50 +02:00
|
|
|
export_Log(module);
|
2019-10-30 22:38:23 +01:00
|
|
|
export_IO(module);
|
2019-12-27 10:08:46 +01:00
|
|
|
export_SummaryState(module);
|
2016-11-25 15:29:36 +01:00
|
|
|
}
|
2018-01-30 07:46:03 +01:00
|
|
|
|
2019-09-13 09:40:13 +02:00
|
|
|
|
2019-09-13 09:22:49 +02:00
|
|
|
PYBIND11_MODULE(libopmcommon_python, module) {
|
|
|
|
|
python::common::export_all(module);
|
|
|
|
|
}
|