From 0886786bb56e1ebfb53716127fd3ff0366e9a9f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Sun, 11 Jan 2015 22:04:31 +0100 Subject: GH-721 Redo internal NetJob implementation. NetJob is now using its own task queue and does not start more than 6 actions at the same time --- logic/QObjectPtr.h | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 logic/QObjectPtr.h (limited to 'logic/QObjectPtr.h') diff --git a/logic/QObjectPtr.h b/logic/QObjectPtr.h new file mode 100644 index 00000000..74c6e82a --- /dev/null +++ b/logic/QObjectPtr.h @@ -0,0 +1,52 @@ +#pragma once + +#include + +/** + * A pointer class with the usual shared pointer semantics intended for derivates of QObject + * Calls deleteLater() instead of destroying the contained object immediately + */ +template +class QObjectPtr +{ +public: + QObjectPtr(){} + QObjectPtr(T * wrap) + { + reset(wrap); + } + QObjectPtr(const QObjectPtr& other) + { + m_ptr = other.m_ptr; + } + +public: + void reset(T * wrap) + { + using namespace std::placeholders; + m_ptr.reset(wrap, std::bind(&QObject::deleteLater, _1)); + } + void reset() + { + m_ptr.reset(); + } + T * get() const + { + return m_ptr.get(); + } + T * operator->() const + { + return m_ptr.get(); + } + T & operator*() const + { + return *m_ptr.get(); + } + operator bool() const + { + return m_ptr.get() != nullptr; + } + +private: + std::shared_ptr m_ptr; +}; -- cgit v1.2.3