mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-10 22:23:34 +00:00
20 lines
236 B
C++
20 lines
236 B
C++
#ifndef __MLX_UUID__
|
|
#define __MLX_UUID__
|
|
|
|
namespace mlx
|
|
{
|
|
class UUID
|
|
{
|
|
public:
|
|
UUID();
|
|
UUID(std::uint64_t uuid);
|
|
|
|
inline operator std::uint64_t() const { return m_uuid; }
|
|
|
|
private:
|
|
std::uint64_t m_uuid;
|
|
};
|
|
}
|
|
|
|
#endif
|