LeviLamina
Loading...
Searching...
No Matches
Dispatcher.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7class Dispatcher {
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 virtual ~Dispatcher();
12
13 virtual uint GetRequestedEvents() = 0;
14
15 virtual void OnEvent(uint ff, int err) = 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 // vftables
32 // NOLINTBEGIN
33 MCNAPI static void** $vftable();
34 // NOLINTEND
35};
36
37} // namespace webrtc
Definition Dispatcher.h:7
static MCAPI void ** $vftable()
MCAPI void $dtor()