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
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 AllowListFile& operator=(AllowListFile const&);
24 AllowListFile(AllowListFile const&);
25 AllowListFile();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCNAPI_S ::FileReadResult reload();
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCNAPI_S void* $ctor(::Core::Path const& filePath);
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCNAPI_S void $dtor();
43 // NOLINTEND
44};
Definition Path.h:10
Definition Alias.h:14