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 virtual ~IApplicationDataStores() /*override*/;
30
31 virtual void init() = 0;
32
33 virtual ::Bedrock::NonOwnerPointer<::Bedrock::DataStore>
34 getDataStore(::Bedrock::IApplicationDataStores::DataStores) = 0;
35
36 virtual ::Bedrock::NonOwnerPointer<::Bedrock::DataStore const>
37 getDataStore(::Bedrock::IApplicationDataStores::DataStores) const = 0;
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCNAPI void $dtor();
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49
50 // NOLINTEND
51};
52
53} // namespace Bedrock
Definition DataStore.h:21
Definition EnableNonOwnerReferences.h:7
Definition IApplicationDataStores.h:16