LeviLamina
Loading...
Searching...
No Matches
SocketServer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/rtc/SocketFactory.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace rtc { class Thread; }
11namespace webrtc { class TimeDelta; }
12// clang-format on
13
14namespace rtc {
15
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 SocketServer& operator=(SocketServer const&);
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 2
33 virtual void SetMessageQueue(::rtc::Thread*);
34
35 // vIndex: 3
36 virtual bool Wait(::webrtc::TimeDelta, bool) = 0;
37
38 // vIndex: 4
39 virtual void WakeUp() = 0;
40
41 // vIndex: 0
42 virtual ~SocketServer() /*override*/ = default;
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54
55 // NOLINTEND
56};
57
58} // namespace rtc
Definition SocketFactory.h:12
Definition SocketServer.h:16
Definition Thread.h:20
Definition TimeDelta.h:10
Definition Alias.h:14