LeviLamina
Loading...
Searching...
No Matches
ApplicationDataStores.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/application/IApplicationDataStores.h"
7#include "mc/deps/core/utility/NonOwnerPointer.h"
8
9// auto generated forward declare list
10// clang-format off
11class AppPlatform;
12namespace Bedrock { class DataStore; }
13// clang-format on
14
15namespace Bedrock {
16
18public:
19 // member variables
20 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 0
37 virtual ~ApplicationDataStores() /*override*/;
38
39 // vIndex: 1
40 virtual void init() /*override*/;
41
42 // vIndex: 3
43 virtual ::Bedrock::NonOwnerPointer<::Bedrock::DataStore>
44 getDataStore(::Bedrock::IApplicationDataStores::DataStores which) /*override*/;
45
46 // vIndex: 2
47 virtual ::Bedrock::NonOwnerPointer<::Bedrock::DataStore const>
48 getDataStore(::Bedrock::IApplicationDataStores::DataStores which) const /*override*/;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
54 MCAPI ApplicationDataStores(::Bedrock::NotNullNonOwnerPtr<::AppPlatform> platform, ::std::string_view tag);
55
56 MCAPI void _initDataStore(::Bedrock::IApplicationDataStores::DataStores which);
57 // NOLINTEND
58
59public:
60 // constructor thunks
61 // NOLINTBEGIN
62 MCAPI void* $ctor(::Bedrock::NotNullNonOwnerPtr<::AppPlatform> platform, ::std::string_view tag);
63 // NOLINTEND
64
65public:
66 // destructor thunk
67 // NOLINTBEGIN
68 MCAPI void $dtor();
69 // NOLINTEND
70
71public:
72 // virtual function thunks
73 // NOLINTBEGIN
74 MCAPI void $init();
75
76 MCFOLD ::Bedrock::NonOwnerPointer<::Bedrock::DataStore>
77 $getDataStore(::Bedrock::IApplicationDataStores::DataStores which);
78
79 MCFOLD ::Bedrock::NonOwnerPointer<::Bedrock::DataStore const>
80 $getDataStore(::Bedrock::IApplicationDataStores::DataStores which) const;
81 // NOLINTEND
82
83public:
84 // vftables
85 // NOLINTBEGIN
86 MCAPI static void** $vftable();
87 // NOLINTEND
88};
89
90} // namespace Bedrock
Definition AppPlatform.h:49
Definition ApplicationDataStores.h:17
Definition IApplicationDataStores.h:16
Definition Alias.h:14