Renamed python/cxx/common -> python/cxx/export
This commit is contained in:
25
python/cxx/export.cpp
Normal file
25
python/cxx/export.cpp
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user