mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-11 14:43:34 +00:00
18 lines
215 B
C++
18 lines
215 B
C++
#ifndef __MLX_UUID__
|
|
#define __MLX_UUID__
|
|
|
|
namespace mlx
|
|
{
|
|
class UUID
|
|
{
|
|
public:
|
|
UUID();
|
|
inline operator std::uint64_t() const noexcept { return m_uuid; }
|
|
|
|
private:
|
|
std::uint64_t m_uuid;
|
|
};
|
|
}
|
|
|
|
#endif
|