LeviLamina
Loading...
Searching...
No Matches
IApplicationDataStores.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7#include "mc/deps/core/utility/NonOwnerPointer.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Bedrock { class DataStore; }
12// clang-format on
13
14namespace Bedrock {
15
17public:
18 // IApplicationDataStores inner types define
19 enum class DataStores : int {
20 GlobalSettings = 0,
21 UserSettings = 1,
22 BootstrapSettings = 2,
23 Count = 3,
24 };
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 0
30 virtual ~IApplicationDataStores() /*override*/;
31
32 // vIndex: 1
33 virtual void init() = 0;
34
35 // vIndex: 3
36 virtual ::Bedrock::NonOwnerPointer<::Bedrock::DataStore> getDataStore(::Bedrock::IApplicationDataStores::DataStores
37 ) = 0;
38
39 // vIndex: 2
40 virtual ::Bedrock::NonOwnerPointer<::Bedrock::DataStore const>
41 getDataStore(::Bedrock::IApplicationDataStores::DataStores) const = 0;
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCFOLD void $dtor();
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53
54 // NOLINTEND
55};
56
57} // namespace Bedrock
Definition EnableNonOwnerReferences.h:7
Definition IApplicationDataStores.h:16