LeviLamina
Loading...
Searching...
No Matches
DtmfSender.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/DtmfSenderInterface.h"
7#include "mc/external/webrtc/scoped_refptr.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace webrtc { class DtmfProviderInterface; }
12namespace webrtc { class DtmfSenderObserverInterface; }
13namespace webrtc { class TaskQueueBase; }
14// clang-format on
15
16namespace webrtc {
17
19public:
20 // member variables
21 // NOLINTBEGIN
30 // NOLINTEND
31
32public:
33 // prevent constructor by default
34 DtmfSender& operator=(DtmfSender const&);
35 DtmfSender(DtmfSender const&);
36 DtmfSender();
37
38public:
39 // virtual functions
40 // NOLINTBEGIN
41 // vIndex: 3
42 virtual void RegisterObserver(::webrtc::DtmfSenderObserverInterface* observer) /*override*/;
43
44 // vIndex: 4
45 virtual void UnregisterObserver() /*override*/;
46
47 // vIndex: 5
48 virtual bool CanInsertDtmf() /*override*/;
49
50 // vIndex: 6
51 virtual bool InsertDtmf(::std::string const& tones, int duration, int inter_tone_gap, int comma_delay) /*override*/;
52
53 // vIndex: 8
54 virtual ::std::string tones() const /*override*/;
55
56 // vIndex: 9
57 virtual int duration() const /*override*/;
58
59 // vIndex: 10
60 virtual int inter_tone_gap() const /*override*/;
61
62 // vIndex: 11
63 virtual int comma_delay() const /*override*/;
64
65 // vIndex: 2
66 virtual ~DtmfSender() /*override*/;
67 // NOLINTEND
68
69public:
70 // member functions
71 // NOLINTBEGIN
72 MCNAPI void DoInsertDtmf();
73
75
77
78 MCNAPI void QueueInsertDtmf(uint delay_ms);
79
80 MCNAPI void StopSending();
81 // NOLINTEND
82
83public:
84 // static functions
85 // NOLINTBEGIN
86 MCNAPI static ::webrtc::scoped_refptr<::webrtc::DtmfSender>
88 // NOLINTEND
89
90public:
91 // constructor thunks
92 // NOLINTBEGIN
93 MCNAPI void* $ctor(::webrtc::TaskQueueBase* signaling_thread, ::webrtc::DtmfProviderInterface* provider);
94 // NOLINTEND
95
96public:
97 // destructor thunk
98 // NOLINTBEGIN
99 MCNAPI void $dtor();
100 // NOLINTEND
101
102public:
103 // virtual function thunks
104 // NOLINTBEGIN
106
107 MCNAPI void $UnregisterObserver();
108
109 MCNAPI bool $CanInsertDtmf();
110
111 MCNAPI bool $InsertDtmf(::std::string const& tones, int duration, int inter_tone_gap, int comma_delay);
112
113 MCNAPI ::std::string $tones() const;
114
115 MCNAPI int $duration() const;
116
117 MCNAPI int $inter_tone_gap() const;
118
119 MCNAPI int $comma_delay() const;
120 // NOLINTEND
121
122public:
123 // vftables
124 // NOLINTBEGIN
125 MCNAPI static void** $vftable();
126 // NOLINTEND
127};
128
129} // namespace webrtc
Definition DtmfProviderInterface.h:7
Definition DtmfSenderInterface.h:15
Definition DtmfSenderObserverInterface.h:7
Definition DtmfSender.h:18
MCAPI void * $ctor(::webrtc::TaskQueueBase *signaling_thread, ::webrtc::DtmfProviderInterface *provider)
MCAPI void $RegisterObserver(::webrtc::DtmfSenderObserverInterface *observer)
MCAPI int $duration() const
static MCAPI ::webrtc::scoped_refptr<::webrtc::DtmfSender > Create(::webrtc::TaskQueueBase *signaling_thread, ::webrtc::DtmfProviderInterface *provider)
MCAPI int $comma_delay() const
MCAPI bool $CanInsertDtmf()
MCAPI bool $InsertDtmf(::std::string const &tones, int duration, int inter_tone_gap, int comma_delay)
MCAPI int $inter_tone_gap() const
MCAPI void $UnregisterObserver()
MCAPI void QueueInsertDtmf(uint delay_ms)
static MCAPI void ** $vftable()
MCAPI void DoInsertDtmf()
MCAPI void StopSending()
MCAPI::std::string $tones() const
MCAPI DtmfSender(::webrtc::TaskQueueBase *signaling_thread, ::webrtc::DtmfProviderInterface *provider)
MCAPI void OnDtmfProviderDestroyed()
MCAPI void $dtor()
Definition TaskQueueBase.h:16
Definition Alias.h:14