Core/RefCounted: Remove persistent boolean

Former-commit-id: 99602e0fa1e54b6fc8e0087ef89d0e2c74bcfc15 [formerly 83374368c28b83e4916958e7a58d54ec663a9842]
Former-commit-id: 603d0c81eada7d1f25058163bbf97672cd96d08c
This commit is contained in:
Lynix
2016-08-02 12:52:49 +02:00
parent 44174feac6
commit 07725ceb03
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;
};
}