LeviLamina
Loading...
Searching...
No Matches
MediaEngineInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace cricket { class VideoEngineInterface; }
8namespace cricket { class VoiceEngineInterface; }
9// clang-format on
10
11namespace cricket {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 0
18 virtual ~MediaEngineInterface() = default;
19
20 // vIndex: 1
21 virtual bool Init() = 0;
22
23 // vIndex: 3
24 virtual ::cricket::VoiceEngineInterface& voice() = 0;
25
26 // vIndex: 2
27 virtual ::cricket::VoiceEngineInterface const& voice() const = 0;
28
29 // vIndex: 5
30 virtual ::cricket::VideoEngineInterface& video() = 0;
31
32 // vIndex: 4
33 virtual ::cricket::VideoEngineInterface const& video() const = 0;
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45
46 // NOLINTEND
47};
48
49} // namespace cricket
Definition MediaEngineInterface.h:13