LeviLamina
Loading...
Searching...
No Matches
IntegrityVerdict.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace SDL {
6
8public:
9 // IntegrityVerdict inner types define
10 enum class DeviceVerdict : int {
11 Pass = 0,
12 Basic = 1,
13 Strong = 2,
14 Virtual = 3,
15 Fail = 4,
16 Unknown = 5,
17 };
18
19 enum class AppVerdict : int {
20 Recognized = 0,
21 Unrecognized = 1,
22 Unevaluated = 2,
23 Unknown = 3,
24 };
25
26 enum class LicenseVerdict : int {
27 Licensed = 0,
28 Unlicensed = 1,
29 Unevaluated = 2,
30 Unknown = 3,
31 };
32
33public:
34 // member variables
35 // NOLINTBEGIN
40 // NOLINTEND
41
42public:
43 // prevent constructor by default
44 IntegrityVerdict& operator=(IntegrityVerdict const&);
47};
48
49} // namespace SDL
Definition IntegrityVerdict.h:7
Definition Alias.h:14