/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* DriverLoader.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: maldavid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/04/02 16:56:10 by maldavid #+# #+# */ /* Updated: 2024/04/03 15:02:44 by maldavid ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef __MLX_CORE_DRIVER_LOADER__ #define __MLX_CORE_DRIVER_LOADER__ #include namespace mlx { class DriverLoader { public: DriverLoader() = default; template inline bool LoadDriver(); inline void ShutdownAllDrivers(); ~DriverLoader() = default; private: std::vector > m_instances; }; } #include #endif