LeviLamina
Loading...
Searching...
No Matches
FlatFileManifestTracker.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Core { class FlatFileManifest; }
8namespace Core { class PathView; }
9// clang-format on
10
11namespace Core {
12
14public:
15 // member variables
16 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
26
27public:
28 // member functions
29 // NOLINTBEGIN
31
32 MCNAPI ::std::shared_ptr<::Core::FlatFileManifest const> loadManifest(::Core::PathView manifestPath);
33
34 MCNAPI bool manifestExists(::Core::PathView manifestPath) const;
35
36 MCNAPI bool tryUnloadManifest(::Core::PathView manifestPath);
37
38 MCNAPI void updateManifest(::std::shared_ptr<::Core::FlatFileManifest> manifest, bool keepCached);
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCNAPI void* $ctor();
45 // NOLINTEND
46};
47
48} // namespace Core
Definition FlatFileManifestTracker.h:13
MCAPI ::std::shared_ptr<::Core::FlatFileManifest const > loadManifest(::Core::PathView manifestPath)
MCAPI bool tryUnloadManifest(::Core::PathView manifestPath)
MCAPI void updateManifest(::std::shared_ptr<::Core::FlatFileManifest > manifest, bool keepCached)
MCAPI bool manifestExists(::Core::PathView manifestPath) const
Definition PathView.h:16
Definition Alias.h:14