LeviLamina
Loading...
Searching...
No Matches
FileSizePresetManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Core { class FileSizePresetToken; }
8namespace Core { class PathView; }
9// clang-format on
10
11namespace Core {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 virtual ~FileSizePresetManager();
18
19 virtual ::std::unique_ptr<::Core::FileSizePresetToken> presetInitialSizeForFile(::Core::PathView, uint64) = 0;
20
21 virtual ::std::optional<uint64> checkFileInitialSize(::Core::PathView) = 0;
22 // NOLINTEND
23
24public:
25 // destructor thunk
26 // NOLINTBEGIN
27 MCNAPI void $dtor();
28 // NOLINTEND
29
30public:
31 // virtual function thunks
32 // NOLINTBEGIN
33
34 // NOLINTEND
35
36public:
37 // vftables
38 // NOLINTBEGIN
39 MCNAPI static void** $vftable();
40 // NOLINTEND
41};
42
43} // namespace Core
Definition FileSizePresetManager.h:13
static MCAPI void ** $vftable()
Definition FileSizePresetToken.h:7
Definition PathView.h:17