LeviLamina
Loading...
Searching...
No Matches
AsyncAudioProcessing.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/RefCountInterface.h"
7
8namespace webrtc {
9
10class AsyncAudioProcessing {
11public:
12 // AsyncAudioProcessing inner types declare
13 // clang-format off
14 class Factory;
15 // clang-format on
16
17 // AsyncAudioProcessing inner types define
18 class Factory : public ::webrtc::RefCountInterface {
19 public:
20 // member variables
21 // NOLINTBEGIN
25 // NOLINTEND
26
27 public:
28 // prevent constructor by default
29 Factory& operator=(Factory const&);
30 Factory(Factory const&);
31 Factory();
32
33 public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual ~Factory() /*override*/ = default;
37 // NOLINTEND
38 };
39
40public:
41 // member variables
42 // NOLINTBEGIN
47 // NOLINTEND
48
49public:
50 // prevent constructor by default
51 AsyncAudioProcessing& operator=(AsyncAudioProcessing const&);
52 AsyncAudioProcessing(AsyncAudioProcessing const&);
53 AsyncAudioProcessing();
54};
55
56} // namespace webrtc
Definition AsyncAudioProcessing.h:18
Definition RefCountInterface.h:10
Definition Alias.h:14