add access level feature

This commit is contained in:
technyon
2023-05-06 11:39:18 +02:00
parent 190a757a4e
commit 5b8ed0a5b8
14 changed files with 168 additions and 24 deletions

8
AccessLevel.h Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
enum class AccessLevel
{
Full = 0,
LockOnly = 1,
ReadOnly = 2
};