mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-28 18:21:00 -06:00
12 lines
242 B
C++
12 lines
242 B
C++
|
#include <pybind11/pybind11.h>
|
||
|
#include <opm/simulators/flow/python/Pybind11Exporter.hpp>
|
||
|
|
||
|
void Opm::Pybind::export_all(py::module& m) {
|
||
|
export_PyBlackOilSimulator(m);
|
||
|
}
|
||
|
|
||
|
PYBIND11_MODULE(simulators, m)
|
||
|
{
|
||
|
Opm::Pybind::export_all(m);
|
||
|
}
|