Core/RefCounted: Remove persistent boolean

Former-commit-id: 6661b29e0e5e1dee8f4588688dc42865ce76e9ba [formerly 55e47c5ec3851e55243fb0e8e85d7fcc22f6cc1b]
Former-commit-id: 5442ab91a3a4b7da93c10bd06889785ac1faf034
This commit is contained in:
Lynix
2016-08-02 12:52:49 +02:00
parent 870305b403
commit 755bf0b04b
28 changed files with 4 additions and 110 deletions

View File

@@ -22,7 +22,7 @@ namespace Nz
class NAZARA_CORE_API RefCounted
{
public:
RefCounted(bool persistent = true);
RefCounted();
RefCounted(const RefCounted&) = delete;
RefCounted(RefCounted&&) = default;
virtual ~RefCounted();
@@ -31,17 +31,12 @@ namespace Nz
unsigned int GetReferenceCount() const;
bool IsPersistent() const;
bool RemoveReference() const;
bool SetPersistent(bool persistent = true, bool checkReferenceCount = false);
RefCounted& operator=(const RefCounted&) = delete;
RefCounted& operator=(RefCounted&&) = default;
private:
std::atomic_bool m_persistent;
mutable std::atomic_uint m_referenceCount;
};
}