LeviLamina
Loading...
Searching...
No Matches
AudioSinkInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
8public:
9 // AudioSinkInterface inner types declare
10 // clang-format off
11 struct Data;
12 // clang-format on
13
14 // AudioSinkInterface inner types define
15 struct Data {
16 public:
17 // member variables
18 // NOLINTBEGIN
24 // NOLINTEND
25
26 public:
27 // prevent constructor by default
28 Data& operator=(Data const&);
29 Data(Data const&);
30 Data();
31 };
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 0
37 virtual ~AudioSinkInterface() = default;
38
39 // vIndex: 1
40 virtual void OnData(::webrtc::AudioSinkInterface::Data const&) = 0;
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCAPI static void** $vftable();
59 // NOLINTEND
60};
61
62} // namespace webrtc
Definition AudioSinkInterface.h:7
Definition Alias.h:14
Definition AudioSinkInterface.h:15