Переименование GUID на UUID

This commit is contained in:
Антон
2025-08-30 08:31:03 +03:00
parent 5c226faf8a
commit c1019b0d5e
7 changed files with 50 additions and 50 deletions
+4 -4
View File
@@ -7,14 +7,14 @@ using namespace std;
namespace uad
{
const string& User::GetGUID() const noexcept
const string& User::GetUUID() const noexcept
{
return guid_;
return uuid_;
}
void User::SetGUID(const string& new_guid)
void User::SetUUID(const string& new_uuid)
{
guid_ = new_guid;
uuid_ = new_uuid;
}
const string& User::GetLogin() const noexcept