// Copyright (C) 2023 Jérôme "Lynix" Leclercq (lynix680@gmail.com) // This file is part of the "Nazara Engine - Utility module" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_UTILITY_BUFFERMAPPER_HPP #define NAZARA_UTILITY_BUFFERMAPPER_HPP #include namespace Nz { template class BufferMapper { public: BufferMapper(); BufferMapper(T& buffer, UInt64 offset, UInt64 length); ~BufferMapper(); bool Map(T& buffer, UInt64 offset, UInt64 length); const T* GetBuffer() const; void* GetPointer() const; void Unmap(); private: T* m_buffer; void* m_ptr; }; } #include #endif // NAZARA_UTILITY_BUFFERMAPPER_HPP