LeviLamina
Loading...
Searching...
No Matches
Dispatcher.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace rtc {
6
7class Dispatcher {
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 virtual ~Dispatcher();
12
13 virtual uint GetRequestedEvents() = 0;
14
15 virtual void OnEvent(uint, int) = 0;
16
17 virtual void* GetWSAEvent() = 0;
18
19 virtual uint64 GetSocket() = 0;
20
21 virtual bool CheckSignalClose() = 0;
22 // NOLINTEND
23
24public:
25 // destructor thunk
26 // NOLINTBEGIN
27 MCNAPI void $dtor();
28 // NOLINTEND
29
30public:
31 // virtual function thunks
32 // NOLINTBEGIN
33
34 // NOLINTEND
35
36public:
37 // vftables
38 // NOLINTBEGIN
39 MCNAPI static void** $vftable();
40 // NOLINTEND
41};
42
43} // namespace rtc
Definition Dispatcher.h:7
static MCAPI void ** $vftable()
MCAPI void $dtor()