MCPcopy Create free account
hub / github.com/MrKepzie/Natron / Sbk_FileParamFunc_reloadFile

Function Sbk_FileParamFunc_reloadFile

Engine/NatronEngine/fileparam_wrapper.cpp:63–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61}
62
63static PyObject* Sbk_FileParamFunc_reloadFile(PyObject* self)
64{
65 FileParamWrapper* cppSelf = 0;
66 SBK_UNUSED(cppSelf)
67 if (!Shiboken::Object::isValid(self))
68 return 0;
69 cppSelf = (FileParamWrapper*)((::FileParam*)Shiboken::Conversions::cppPointer(SbkNatronEngineTypes[SBK_FILEPARAM_IDX], (SbkObject*)self));
70
71 // Call function/method
72 {
73
74 if (!PyErr_Occurred()) {
75 // reloadFile()
76 cppSelf->reloadFile();
77 }
78 }
79
80 if (PyErr_Occurred()) {
81 return 0;
82 }
83 Py_RETURN_NONE;
84}
85
86static PyObject* Sbk_FileParamFunc_setSequenceEnabled(PyObject* self, PyObject* pyArg)
87{

Callers

nothing calls this directly

Calls 2

isValidFunction · 0.85
reloadFileMethod · 0.45

Tested by

no test coverage detected