You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
another = ffpython.Another()
theA = another.returnA()
theA.method()
Yields errors as:
ffpython/ffpython.h: In instantiation of ‘PyObject* ff::ScriptMethodImpl<RET (CLASS_TYPE::*)()>::handleRun() [with CLASS_TYPE = AeProcess; RET = AeDriver&; PyObject = _object]’:
ffpython/ffpython.h:1390:23: required from here
fpython/ffpython.h:1392:48: error: incomplete type ‘ff::ScriptCppOps<A&>’ used in nested name specifier
1392 | return ScriptCppOps<RET>::scriptFromCpp(((CLASS_TYPE*)pobjArg->*func)());
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The text was updated successfully, but these errors were encountered:
Hi,
Great job, easy integration. Thank you.
What work around I have to make to return an object instance from a C++
function to python ?
PY, something like
Yields errors as:
The text was updated successfully, but these errors were encountered: