LeviLamina
Loading...
Searching...
No Matches
KeyOrNameResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // KeyOrNameResult inner types define
8 enum class ResultType : int {
9 LocalizationKey = 0,
10 Name = 1,
11 };
12
13public:
14 // member variables
15 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 KeyOrNameResult& operator=(KeyOrNameResult const&);
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI ~KeyOrNameResult();
30 // NOLINTEND
31
32public:
33 // destructor thunk
34 // NOLINTBEGIN
35 MCFOLD void $dtor();
36 // NOLINTEND
37};
Definition KeyOrNameResult.h:5
Definition Alias.h:14