1 // mds_utils/python/obj.i
3 // Copyright (c) 2014 - Michele De Stefano (micdestefano@users.sourceforge.net)
5 // Distributed under the MIT License (See accompanying file LICENSE)
7 %typemap(in) (mds_utils::python::Obj) {
10 } catch (std::exception& e) {
11 PyErr_SetString(PyExc_RuntimeError,e.what());
16 %typemap(out) mds_utils::python::Obj {
17 $result = $1.transfer();
20 %typecheck(SWIG_TYPECHECK_POINTER) mds_utils::python::Obj {