/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* UUID.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: maldavid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/01/06 11:13:23 by maldavid #+# #+# */ /* Updated: 2024/01/07 01:44:21 by maldavid ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef __MLX_UUID__ #define __MLX_UUID__ #include namespace mlx { class UUID { public: UUID(); UUID(uint64_t uuid); inline operator uint64_t() const { return _uuid; } private: uint64_t _uuid; }; } #endif