LeviLamina
Loading...
Searching...
No Matches
AllowListFile.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/FileReadResult.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Core { class Path; }
11// clang-format on
12
13class AllowListFile {
14public:
15 // member variables
16 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 AllowListFile& operator=(AllowListFile const&);
25 AllowListFile(AllowListFile const&);
26 AllowListFile();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31#ifdef LL_PLAT_S
32 MCNAPI explicit AllowListFile(::Core::Path const& filePath);
33
34 MCNAPI ::FileReadResult reload();
35#endif
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41#ifdef LL_PLAT_S
42 MCNAPI void* $ctor(::Core::Path const& filePath);
43#endif
44 // NOLINTEND
45};
Definition Path.h:11
Definition Alias.h:14