Files
opm-common/python/cxx/unit_system.cpp
2019-10-13 22:53:56 +02:00

11 lines
252 B
C++

#include <opm/parser/eclipse/Units/UnitSystem.hpp>
#include "export.hpp"
void python::common::export_UnitSystem(py::module& module)
{
py::class_<UnitSystem>(module, "UnitSystem")
.def_property_readonly( "name", &UnitSystem::getName );
}