LeviLamina
Loading...
Searching...
No Matches
DataStoreQueryBool.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/oreui/binding/QueryBase.h"
7#include "mc/client/gui/oreui/binding/properties/Property.h"
8#include "mc/deps/core/utility/pub_sub/Subscription.h"
9
10// auto generated forward declare list
11// clang-format off
12namespace Bedrock::DDUI { class DataStoreSyncClient; }
13namespace OreUI { class ClientDependencies; }
14namespace OreUI { class GameDependencies; }
15// clang-format on
16
17namespace OreUI {
18
19class DataStoreQueryBool : public ::OreUI::QueryBase<::OreUI::DataStoreQueryBool> {
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 16, ::Bedrock::PubSub::Subscription> mSubscription;
24 ::ll::TypedStorage<8, 176, ::OreUI::Property<::std::optional<bool>>> mValue;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 DataStoreQueryBool();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ~DataStoreQueryBool() /*override*/ = default;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI DataStoreQueryBool(
41 ::Bedrock::DDUI::DataStoreSyncClient* dataStore,
42 ::std::string dataStoreName,
43 ::std::string propertyName,
44 ::std::string path
45 );
46
47 MCAPI DataStoreQueryBool(
48 ::OreUI::GameDependencies const&,
49 ::OreUI::ClientDependencies const& client,
50 ::std::string dataStoreName,
51 ::std::string propertyName,
52 ::std::string path
53 );
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
59 MCAPI void* $ctor(
60 ::Bedrock::DDUI::DataStoreSyncClient* dataStore,
61 ::std::string dataStoreName,
62 ::std::string propertyName,
63 ::std::string path
64 );
65
66 MCAPI void* $ctor(
67 ::OreUI::GameDependencies const&,
68 ::OreUI::ClientDependencies const& client,
69 ::std::string dataStoreName,
70 ::std::string propertyName,
71 ::std::string path
72 );
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCNAPI static void** $vftableForIQuery();
79
80 MCNAPI static void** $vftableForPropertyObject();
81 // NOLINTEND
82};
83
84} // namespace OreUI
Definition DataStoreSyncClient.h:15
Definition ClientDependencies.h:7
Definition DataStoreQueryBool.h:7
static MCAPI void ** $vftableForIQuery()
static MCAPI void ** $vftableForPropertyObject()
Definition GameDependencies.h:7