#ifndef ARBUTILS_BORROWEDPTR_HPP #define ARBUTILS_BORROWEDPTR_HPP #include namespace ArbUt { /// A borrowed pointer is used to indicate a pointer that is not owned by an object, but instead borrowed from /// another owning object that is assumed to always be kept alive during the entire lifetime of the borrowing /// object. template class BorrowedPtr { private: T* _raw; public: inline BorrowedPtr() : _raw(nullptr){}; inline BorrowedPtr(T* ptr) : _raw(ptr){}; inline BorrowedPtr(const BorrowedPtr& other) : _raw(other._raw){}; inline BorrowedPtr(const std::unique_ptr& other) : _raw(other.get()){}; ~BorrowedPtr() = default; inline BorrowedPtr& operator=(const BorrowedPtr& rhs) { _raw = rhs._raw; return *this; } inline T* operator->() const noexcept { return _raw; } inline T* GetRaw() const noexcept { return _raw; } inline bool operator==(const BorrowedPtr& rhs) const { return _raw == rhs._raw; } inline bool operator!=(const BorrowedPtr& rhs) const { return _raw != rhs._raw; } [[nodiscard]] inline constexpr bool IsNull() const noexcept { return _raw == nullptr; } template inline BorrowedPtr As() const { auto cast = dynamic_cast(_raw); return BorrowedPtr(cast); } template inline bool TryAs(BorrowedPtr& out) const { auto cast = dynamic_cast(_raw); if (cast == nullptr) return false; out = BorrowedPtr(cast); return true; } template inline BorrowedPtr ForceAs() const { auto cast = reinterpret_cast(_raw); return BorrowedPtr(cast); } }; } #endif // ARBUTILS_BORROWEDPTR_HPP