mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-19 17:35:06 -04:00
util: add uuid
This commit is contained in:
parent
5a8aebf74d
commit
c17b6d0d44
6 changed files with 187 additions and 4 deletions
41
libraries/libvapours/include/vapours/util/util_uuid.hpp
Normal file
41
libraries/libvapours/include/vapours/util/util_uuid.hpp
Normal file
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* Copyright (c) 2018-2020 Atmosphère-NX
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms and conditions of the GNU General Public License,
|
||||
* version 2, as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include <vapours/common.hpp>
|
||||
#include <vapours/assert.hpp>
|
||||
|
||||
namespace ams::util {
|
||||
|
||||
struct Uuid {
|
||||
static constexpr size_t Size = 0x10;
|
||||
|
||||
u8 data[Size];
|
||||
|
||||
bool operator==(const Uuid &rhs) const {
|
||||
return std::memcmp(this->data, rhs.data, Size) == 0;
|
||||
}
|
||||
|
||||
bool operator!=(const Uuid &rhs) const {
|
||||
return !(*this == rhs);
|
||||
}
|
||||
|
||||
u8 operator[](size_t i) const {
|
||||
return this->data[i];
|
||||
}
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue