2015-01-12 02:34:31 +05:30
|
|
|
#pragma once
|
|
|
|
|
2022-08-04 22:28:30 +05:30
|
|
|
#include <QObject>
|
|
|
|
#include <QSharedPointer>
|
2022-08-05 01:39:32 +05:30
|
|
|
|
2017-04-19 20:59:50 +05:30
|
|
|
#include <functional>
|
2015-01-12 02:34:31 +05:30
|
|
|
#include <memory>
|
2015-10-20 20:48:53 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* A unique pointer class with unique pointer semantics intended for derivates of QObject
|
|
|
|
* Calls deleteLater() instead of destroying the contained object immediately
|
|
|
|
*/
|
2022-08-04 22:28:30 +05:30
|
|
|
template <typename T>
|
2022-08-05 01:39:32 +05:30
|
|
|
using unique_qobject_ptr = QScopedPointer<T, QScopedPointerDeleteLater>;
|
2015-01-12 02:34:31 +05:30
|
|
|
|
|
|
|
/**
|
2015-10-20 20:48:53 +05:30
|
|
|
* A shared pointer class with shared pointer semantics intended for derivates of QObject
|
2015-01-12 02:34:31 +05:30
|
|
|
* Calls deleteLater() instead of destroying the contained object immediately
|
|
|
|
*/
|
|
|
|
template <typename T>
|
2022-08-04 22:28:30 +05:30
|
|
|
class shared_qobject_ptr : public QSharedPointer<T> {
|
|
|
|
public:
|
|
|
|
constexpr shared_qobject_ptr() : QSharedPointer<T>() {}
|
2022-08-05 01:39:32 +05:30
|
|
|
constexpr shared_qobject_ptr(T* ptr) : QSharedPointer<T>(ptr, &QObject::deleteLater) {}
|
|
|
|
constexpr shared_qobject_ptr(std::nullptr_t null_ptr) : QSharedPointer<T>(null_ptr, &QObject::deleteLater) {}
|
2015-01-12 02:34:31 +05:30
|
|
|
|
2022-08-04 22:28:30 +05:30
|
|
|
template <typename Derived>
|
|
|
|
constexpr shared_qobject_ptr(const shared_qobject_ptr<Derived>& other) : QSharedPointer<T>(other)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void reset() { QSharedPointer<T>::reset(); }
|
|
|
|
void reset(const shared_qobject_ptr<T>& other)
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
2022-08-04 22:28:30 +05:30
|
|
|
shared_qobject_ptr<T> t(other);
|
|
|
|
this->swap(t);
|
2021-11-23 05:55:24 +05:30
|
|
|
}
|
2015-01-12 02:34:31 +05:30
|
|
|
};
|