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 virtual void RegisterObserver(::webrtc::DtmfSenderObserverInterface*) = 0;
20
21 virtual void UnregisterObserver() = 0;
22
23 virtual bool CanInsertDtmf() = 0;
24
25 virtual bool InsertDtmf(::std::string const& tones, int duration, int inter_tone_gap);
26
27 virtual bool InsertDtmf(::std::string const&, int, int, int);
28
29 virtual ::std::string tones() const = 0;
30
31 virtual int duration() const = 0;
32
33 virtual int inter_tone_gap() const = 0;
34
35 virtual int comma_delay() const;
36
37 virtual ~DtmfSenderInterface() /*override*/;
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCNAPI void $dtor();
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCNAPI bool $InsertDtmf(::std::string const& tones, int duration, int inter_tone_gap);
50
51
52 // NOLINTEND
53};
54
55} // namespace webrtc
Definition DtmfSenderInterface.h:15
MCAPI bool $InsertDtmf(::std::string const &tones, int duration, int inter_tone_gap)
Definition DtmfSenderObserverInterface.h:7
Definition RefCountInterface.h:10