LeviLamina
Loading...
Searching...
No Matches
SentPacket.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace rtc { struct PacketInfo; }
8// clang-format on
9
10namespace rtc {
11
12struct SentPacket {
13public:
14 // member variables
15 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 SentPacket& operator=(SentPacket const&);
24 SentPacket(SentPacket const&);
25 SentPacket();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCAPI SentPacket(int64, int64);
31
32 MCAPI SentPacket(int64, int64, ::rtc::PacketInfo const&);
33
34 MCAPI ~SentPacket();
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCAPI void* $ctor(int64, int64);
41
42 MCAPI void* $ctor(int64, int64, ::rtc::PacketInfo const&);
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCAPI void $dtor();
49 // NOLINTEND
50};
51
52} // namespace rtc
Definition Alias.h:14
Definition PacketInfo.h:7
Definition SentPacket.h:12