Pybind11Exporter.hpp
Go to the documentation of this file.
1#ifndef OPM_PYBIND11_EXPORTER_HEADER_INCLUDED
2#define OPM_PYBIND11_EXPORTER_HEADER_INCLUDED
3
4#include <pybind11/pybind11.h>
5#include <pybind11/numpy.h>
6#include <pybind11/stl.h>
7//#include <pybind11/embed.h>
8
9namespace py = pybind11;
10
11namespace Opm::Pybind {
12 void export_PyBlackOilSimulator(py::module& m);
13 void export_PyGasWaterSimulator(py::module& m);
14 void export_PyOnePhaseSimulator(py::module& m);
15}
16
17#endif //OPM_PYBIND11_EXPORTER_HEADER_INCLUDED
Definition: PyBaseSimulator.hpp:41
void export_PyGasWaterSimulator(py::module &m)
void export_PyOnePhaseSimulator(py::module &m)
void export_PyBlackOilSimulator(py::module &m)