LeviLamina
Loading...
Searching...
No Matches
Factory.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::AsyncAudioProcessing {
9
10class Factory : public ::webrtc::RefCountInterface {
11public:
12 // member variables
13 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 Factory& operator=(Factory const&);
22 Factory(Factory const&);
23 Factory();
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual ~Factory() /*override*/ = default;
29 // NOLINTEND
30};
31
32} // namespace webrtc::AsyncAudioProcessing
Definition RefCountInterface.h:10
Definition Alias.h:14