| 829 | } |
| 830 | |
| 831 | static PyObject* Sbk_AppFunc_resetProject(PyObject* self) |
| 832 | { |
| 833 | AppWrapper* cppSelf = 0; |
| 834 | SBK_UNUSED(cppSelf) |
| 835 | if (!Shiboken::Object::isValid(self)) |
| 836 | return 0; |
| 837 | cppSelf = (AppWrapper*)((::App*)Shiboken::Conversions::cppPointer(SbkNatronEngineTypes[SBK_APP_IDX], (SbkObject*)self)); |
| 838 | PyObject* pyResult = 0; |
| 839 | |
| 840 | // Call function/method |
| 841 | { |
| 842 | |
| 843 | if (!PyErr_Occurred()) { |
| 844 | // resetProject() |
| 845 | bool cppResult = cppSelf->resetProject(); |
| 846 | pyResult = Shiboken::Conversions::copyToPython(Shiboken::Conversions::PrimitiveTypeConverter<bool>(), &cppResult); |
| 847 | } |
| 848 | } |
| 849 | |
| 850 | if (PyErr_Occurred() || !pyResult) { |
| 851 | Py_XDECREF(pyResult); |
| 852 | return 0; |
| 853 | } |
| 854 | return pyResult; |
| 855 | } |
| 856 | |
| 857 | static PyObject* Sbk_AppFunc_saveProject(PyObject* self, PyObject* pyArg) |
| 858 | { |
nothing calls this directly
no test coverage detected