LeviLamina
Loading...
Searching...
No Matches
DataStoreSyncServer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/data_sync/DataStoreSync.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Bedrock::DDUI { struct DataStoreUpdate; }
11// clang-format on
12
13namespace Bedrock::DDUI {
14
15class DataStoreSyncServer : public ::Bedrock::DDUI::DataStoreSync {
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 DataStoreSyncServer& operator=(DataStoreSyncServer const&);
25 DataStoreSyncServer(DataStoreSyncServer const&);
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ~DataStoreSyncServer() /*override*/ = default;
31
32 virtual void clear(::std::string const& datastoreName, bool addToOutgoingChanges) /*override*/;
33
34 virtual void assertAppropriateThread() const /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCNAPI_S DataStoreSyncServer();
41
43
45 ::std::string const& dataStoreName,
46 ::std::string const& propertyName,
47 ::std::string const& path
48 );
49
51 ::std::string const& dataStoreName,
52 ::std::string const& propertyName,
53 ::std::string const& path,
54 bool value
55 );
56 // NOLINTEND
57
58public:
59 // constructor thunks
60 // NOLINTBEGIN
61 MCNAPI_S void* $ctor();
62 // NOLINTEND
63
64public:
65 // virtual function thunks
66 // NOLINTBEGIN
67 MCNAPI void $clear(::std::string const& datastoreName, bool addToOutgoingChanges);
68
69 MCNAPI void $assertAppropriateThread() const;
70
71
72 // NOLINTEND
73
74public:
75 // vftables
76 // NOLINTBEGIN
77 MCNAPI static void** $vftable();
78 // NOLINTEND
79};
80
81} // namespace Bedrock::DDUI
MCAPI void $clear(::std::string const &datastoreName, bool addToOutgoingChanges)
MCAPI void $assertAppropriateThread() const
MCAPI void setPropertyUpdateAllowed(::std::string const &dataStoreName, ::std::string const &propertyName, ::std::string const &path, bool value)
MCAPI void applyUpdate(::Bedrock::DDUI::DataStoreUpdate const &change)
MCAPI bool canClientUpdateProperty(::std::string const &dataStoreName, ::std::string const &propertyName, ::std::string const &path)
static MCAPI void ** $vftable()
Definition DataStoreSync.h:18
Definition DataStoreUpdate.h:7
Definition Alias.h:14