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 MCFOLD bool operator==(::Bedrock::PubSub::SubscriptionBase const& other) const;
25 // NOLINTEND
26};
27
28} // namespace Bedrock::PubSub
Definition SubscriptionBase.h:12