PythonQt
|
#include <PythonQt.h>
Public Member Functions | |
PythonQtPassOwnershipToCPP (const T &t) | |
Allow conversion from T to PythonQtPassOwnershipToCPP<T> More... | |
operator T () const | |
Allow conversion from PythonQtPassOwnershipToCPP<T> to T. More... | |
Public Attributes | |
T | _t |
Helper template that allows to pass the ownership of a C++ instance between C++ and Python (it is used as a slot return type or parameter type so that it can be detected by the PythonQt slot calling code).
Definition at line 89 of file PythonQt.h.
|
inline |
|
inline |
Allow conversion from PythonQtPassOwnershipToCPP<T> to T.
Definition at line 95 of file PythonQt.h.
References PythonQtPassOwnershipToCPP< T >::_t.
T PythonQtPassOwnershipToCPP< T >::_t |
Stored value. This is important so that it has the same memory layout as a pointer if T is a pointer type (which is the typical use case for this class).
Definition at line 99 of file PythonQt.h.
Referenced by PythonQtPassOwnershipToCPP< T >::operator T().