LeviLamina
Loading...
Searching...
No Matches
DataStoreQueryString.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 DataStoreQueryString : public ::OreUI::QueryBase<::OreUI::DataStoreQueryString> {
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 16, ::Bedrock::PubSub::Subscription> mSubscription;
24 ::ll::TypedStorage<8, 208, ::OreUI::Property<::std::optional<::std::string>>> mValue;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 DataStoreQueryString();
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI DataStoreQueryString(
35 ::Bedrock::DDUI::DataStoreSyncClient* dataStore,
36 ::std::string dataStoreName,
37 ::std::string propertyName,
38 ::std::string path,
39 bool getRawMessage
40 );
41
42 MCAPI DataStoreQueryString(
43 ::OreUI::GameDependencies const& client,
44 ::OreUI::ClientDependencies const& dataStoreName,
45 ::std::string propertyName,
46 ::std::string path,
47 ::std::string getRawMessage,
48 bool
49 );
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCAPI void* $ctor(
56 ::Bedrock::DDUI::DataStoreSyncClient* dataStore,
57 ::std::string dataStoreName,
58 ::std::string propertyName,
59 ::std::string path,
60 bool getRawMessage
61 );
62
63 MCAPI void* $ctor(
64 ::OreUI::GameDependencies const& client,
65 ::OreUI::ClientDependencies const& dataStoreName,
66 ::std::string propertyName,
67 ::std::string path,
68 ::std::string getRawMessage,
69 bool
70 );
71 // NOLINTEND
72
73public:
74 // vftables
75 // NOLINTBEGIN
76 MCNAPI static void** $vftableForPropertyObject();
77
78 MCNAPI static void** $vftableForIQuery();
79 // NOLINTEND
80};
81
82} // namespace OreUI
Definition DataStoreSyncClient.h:7
Definition ClientDependencies.h:7
Definition DataStoreQueryString.h:7
static MCAPI void ** $vftableForPropertyObject()
static MCAPI void ** $vftableForIQuery()
Definition GameDependencies.h:7