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
36 MCNAPI ~AllowListFile();
37#endif
38 // NOLINTEND
39
40public:
41 // static functions
42 // NOLINTBEGIN
43#ifdef LL_PLAT_S
44 MCNAPI static ::AllowListFile loadFromDefaultLocations();
45#endif
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51#ifdef LL_PLAT_S
52 MCNAPI void* $ctor(::Core::Path const& filePath);
53#endif
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59#ifdef LL_PLAT_S
60 MCNAPI void $dtor();
61#endif
62 // NOLINTEND
63};
Definition Path.h:17
Definition Alias.h:14