2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-17 04:05:51 +00:00
metaforce/Runtime/IVParamObj.hpp
Lioncash 36d04456dd General: Normalize RuntimeCommonB include paths
Finishes the normalizing of all of includes within the RuntimeCommonB target's headers.
2019-09-23 17:22:37 -04:00

42 lines
948 B
C++

#pragma once
#include <memory>
#include "Runtime/IObj.hpp"
namespace urde {
class IVParamObj : public IObj {
public:
~IVParamObj() override = default;
};
template <class T>
class TObjOwnerParam : public IVParamObj {
T m_param;
public:
TObjOwnerParam(T&& obj) : m_param(std::move(obj)) {}
T& GetParam() { return m_param; }
const T& GetParam() const { return m_param; }
};
class CVParamTransfer {
std::shared_ptr<IVParamObj> m_ref;
public:
CVParamTransfer() = default;
CVParamTransfer(IVParamObj* obj) : m_ref(obj) {}
CVParamTransfer(const CVParamTransfer& other) : m_ref(other.m_ref) {}
IVParamObj* GetObj() const { return m_ref.get(); }
CVParamTransfer ShareTransferRef() const { return CVParamTransfer(*this); }
template <class T>
T& GetOwnedObj() const {
return static_cast<TObjOwnerParam<T>*>(GetObj())->GetParam();
}
static CVParamTransfer Null() { return CVParamTransfer(); }
};
} // namespace urde