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
//! a smart pointer that stores a PyObject pointer and that handles reference counting automatically
classPYTHONQT_EXPORT PythonQtObjectPtr
{
public:
PythonQtObjectPtr():_object(NULL) {}
PythonQtObjectPtr(const PythonQtObjectPtr &p)
:_object(NULL) {
setObject(p.object());
}
//! If the given variant holds a PythonQtObjectPtr, extract the value from it and hold onto the reference. This results in an increment of the reference count.
//! If the given variant holds a PythonQtObjectPtr, extract the value from it and hold onto the reference. This results in an increment of the reference count.