| 457 | } |
| 458 | |
| 459 | static PyObject* Sbk_ParamFunc_getIsPersistent(PyObject* self) |
| 460 | { |
| 461 | ParamWrapper* cppSelf = 0; |
| 462 | SBK_UNUSED(cppSelf) |
| 463 | if (!Shiboken::Object::isValid(self)) |
| 464 | return 0; |
| 465 | cppSelf = (ParamWrapper*)((::Param*)Shiboken::Conversions::cppPointer(SbkNatronEngineTypes[SBK_PARAM_IDX], (SbkObject*)self)); |
| 466 | PyObject* pyResult = 0; |
| 467 | |
| 468 | // Call function/method |
| 469 | { |
| 470 | |
| 471 | if (!PyErr_Occurred()) { |
| 472 | // getIsPersistent()const |
| 473 | bool cppResult = const_cast<const ::ParamWrapper*>(cppSelf)->getIsPersistent(); |
| 474 | pyResult = Shiboken::Conversions::copyToPython(Shiboken::Conversions::PrimitiveTypeConverter<bool>(), &cppResult); |
| 475 | } |
| 476 | } |
| 477 | |
| 478 | if (PyErr_Occurred() || !pyResult) { |
| 479 | Py_XDECREF(pyResult); |
| 480 | return 0; |
| 481 | } |
| 482 | return pyResult; |
| 483 | } |
| 484 | |
| 485 | static PyObject* Sbk_ParamFunc_getIsVisible(PyObject* self) |
| 486 | { |
nothing calls this directly
no test coverage detected