LeviLamina
Loading...
Searching...
No Matches
DtmfSenderInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/RefCountInterface.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace webrtc { class DtmfSenderObserverInterface; }
11// clang-format on
12
13namespace webrtc {
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 3
20 virtual void RegisterObserver(::webrtc::DtmfSenderObserverInterface*) = 0;
21
22 // vIndex: 4
23 virtual void UnregisterObserver() = 0;
24
25 // vIndex: 5
26 virtual bool CanInsertDtmf() = 0;
27
28 // vIndex: 7
29 virtual bool InsertDtmf(::std::string const&, int, int);
30
31 // vIndex: 6
32 virtual bool InsertDtmf(::std::string const&, int, int, int);
33
34 // vIndex: 8
35 virtual ::std::string tones() const = 0;
36
37 // vIndex: 9
38 virtual int duration() const = 0;
39
40 // vIndex: 10
41 virtual int inter_tone_gap() const = 0;
42
43 // vIndex: 11
44 virtual int comma_delay() const;
45
46 // vIndex: 2
47 virtual ~DtmfSenderInterface() /*override*/ = default;
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53
54 // NOLINTEND
55};
56
57} // namespace webrtc
Definition DtmfSenderInterface.h:15
Definition DtmfSenderObserverInterface.h:7
Definition RefCountInterface.h:10