LeviLamina
Loading...
Searching...
No Matches
IEventRecorder.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Social::Events { class Event; }
8namespace Social::Events { class Property; }
9// clang-format on
10
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 virtual ~IEventRecorder() = default;
16
17 virtual uint getPrimaryLocalUser() const = 0;
18
19 virtual ::std::unordered_map<::std::string, ::Social::Events::Property> buildCommonProperties(uint) const = 0;
20
21 virtual void recordEvent(::Social::Events::Event&) = 0;
22 // NOLINTEND
23
24public:
25 // virtual function thunks
26 // NOLINTBEGIN
27
28 // NOLINTEND
29};
Definition IEventRecorder.h:11
Definition Event.h:18
Definition Property.h:7