mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
16 lines
371 B
C++
16 lines
371 B
C++
|
#ifndef OPM_PYBIND11_EXPORTER_HEADER_INCLUDED
|
||
|
#define OPM_PYBIND11_EXPORTER_HEADER_INCLUDED
|
||
|
|
||
|
#include <pybind11/pybind11.h>
|
||
|
#include <pybind11/numpy.h>
|
||
|
//#include <pybind11/embed.h>
|
||
|
|
||
|
namespace py = pybind11;
|
||
|
|
||
|
namespace Opm::Pybind {
|
||
|
void export_all(py::module& m);
|
||
|
void export_PyBlackOilSimulator(py::module& m);
|
||
|
}
|
||
|
|
||
|
#endif //OPM_PYBIND11_EXPORTER_HEADER_INCLUDED
|