Renamed python/cxx/common -> python/cxx/export

This commit is contained in:
Joakim Hove
2019-09-13 09:40:13 +02:00
parent f264c358e7
commit d2ff536cf3
19 changed files with 52 additions and 55 deletions

25
python/cxx/export.cpp Normal file
View File

@@ -0,0 +1,25 @@
#include <pybind11/pybind11.h>
#include "export.hpp"
void python::common::export_all(py::module& module) {
export_ParseContext(module);
export_Parser(module);
export_Deck(module);
export_DeckKeyword(module);
export_Schedule(module);
export_Well(module);
export_Group(module);
export_GroupTree(module);
export_Connection(module);
export_EclipseConfig(module);
export_Eclipse3DProperties(module);
export_EclipseState(module);
export_TableManager(module);
export_EclipseGrid(module);
}
PYBIND11_MODULE(libopmcommon_python, module) {
python::common::export_all(module);
}