LeviLamina
Loading...
Searching...
No Matches
IEventListener.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/NonOwnerPointer.h"
7
8// auto generated forward declare list
9// clang-format off
10class AppPlatform;
11namespace Social::Events { class Event; }
12// clang-format on
13
14namespace Social::Events {
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 virtual ~IEventListener() = default;
21
22 virtual void
23 recordEvent(::Social::Events::Event const& event, ::Bedrock::NonOwnerPointer<::AppPlatform> const& appPlatform) = 0;
24
25 virtual void sendEvents(bool forceSend) = 0;
26
27 virtual int getEventTagsFilter() const = 0;
28
29 virtual void stopDebugEventLogging() = 0;
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35
36 // NOLINTEND
37};
38
39} // namespace Social::Events
Definition AppPlatform.h:91
Definition NonOwnerPointer.h:9
Definition Event.h:19
Definition IEventListener.h:16