LeviLamina
Loading...
Searching...
No Matches
SubscriptionBase.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Bedrock::PubSub::Detail { class SubscriptionBodyBase; }
8// clang-format on
9
10namespace Bedrock::PubSub {
11
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<8, 16, ::std::weak_ptr<::Bedrock::PubSub::Detail::SubscriptionBodyBase>> mBody;
17 // NOLINTEND
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCAPI void disconnect();
23
24 MCAPI void disconnect_async();
25
26 MCFOLD bool operator==(::Bedrock::PubSub::SubscriptionBase const& other) const;
27 // NOLINTEND
28};
29
30} // namespace Bedrock::PubSub
Definition SubscriptionBodyBase.h:20
Definition SubscriptionBase.h:12