Files
opm-common/python/sunbeam/sunbeam.cpp
Joakim Hove 77795b5005 Add 'python/' from commit '278373703455ea6562a0f8e5278b4db46eb1fc7e'
git-subtree-dir: python
git-subtree-mainline: e8dbf7d8ee
git-subtree-split: 2783737034
2019-05-08 07:20:29 +02:00

21 lines
611 B
C++

#include <pybind11/pybind11.h>
#include "sunbeam.hpp"
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);
sunbeam::export_Connection(module);
sunbeam::export_EclipseConfig(module);
sunbeam::export_Eclipse3DProperties(module);
sunbeam::export_EclipseState(module);
sunbeam::export_TableManager(module);
sunbeam::export_EclipseGrid(module);
}