Files
opm-common/python/sunbeam/sunbeam.cpp

21 lines
611 B
C++
Raw Normal View History

#include <pybind11/pybind11.h>
#include "sunbeam.hpp"
2016-11-25 16:33:45 +01:00
PYBIND11_MODULE(libsunbeam, module) {
sunbeam::export_Parser(module);
sunbeam::export_Deck(module);
sunbeam::export_DeckKeyword(module);
sunbeam::export_Schedule(module);
sunbeam::export_Well(module);
sunbeam::export_Group(module);
sunbeam::export_GroupTree(module);
2018-07-09 16:54:15 +02:00
sunbeam::export_Connection(module);
sunbeam::export_EclipseConfig(module);
sunbeam::export_Eclipse3DProperties(module);
sunbeam::export_EclipseState(module);
sunbeam::export_TableManager(module);
sunbeam::export_EclipseGrid(module);
}