Core: Add MovableValue
This commit is contained in:
61
include/Nazara/Core/MovableValue.inl
Normal file
61
include/Nazara/Core/MovableValue.inl
Normal file
@@ -0,0 +1,61 @@
|
||||
// Copyright (C) 2020 Jérôme Leclercq
|
||||
// This file is part of the "Nazara Engine - Core module"
|
||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||
|
||||
#include <Nazara/Core/MovableValue.hpp>
|
||||
#include <utility>
|
||||
|
||||
namespace Nz
|
||||
{
|
||||
template<typename T>
|
||||
MovableValue<T>::MovableValue(T value) :
|
||||
m_value(std::move(value))
|
||||
{
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
MovableValue<T>::MovableValue(MovableValue&& val) noexcept :
|
||||
m_value()
|
||||
{
|
||||
std::swap(m_value, val.m_value);
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
T& MovableValue<T>::Get()
|
||||
{
|
||||
return m_value;
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
const T& MovableValue<T>::Get() const
|
||||
{
|
||||
return m_value;
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
MovableValue<T>::operator T&()
|
||||
{
|
||||
return m_value;
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
MovableValue<T>::operator const T&() const
|
||||
{
|
||||
return m_value;
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
MovableValue<T>& MovableValue<T>::operator=(T value)
|
||||
{
|
||||
m_value = std::move(value);
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
MovableValue<T>& MovableValue<T>::operator=(MovableValue&& ptr) noexcept
|
||||
{
|
||||
std::swap(m_value, ptr.m_value);
|
||||
return *this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user