You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
415 B
12 lines
415 B
#include <boost/python.hpp>
|
|
#include "../utility/storm-version.h"
|
|
|
|
BOOST_PYTHON_MODULE(_info)
|
|
{
|
|
using namespace boost::python;
|
|
class_<storm::utility::StormVersion>("Version")
|
|
.def("short", &storm::utility::StormVersion::shortVersionString)
|
|
.def("long", &storm::utility::StormVersion::longVersionString)
|
|
.def("build_info", &storm::utility::StormVersion::buildInfo)
|
|
;
|
|
}
|