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 virtual ~MediaEngineInterface() = default;
18
19 virtual bool Init() = 0;
20
21 virtual ::cricket::VoiceEngineInterface& voice() = 0;
22
23 virtual ::cricket::VoiceEngineInterface const& voice() const = 0;
24
25 virtual ::cricket::VideoEngineInterface& video() = 0;
26
27 virtual ::cricket::VideoEngineInterface const& video() const = 0;
28 // NOLINTEND
29
30public:
31 // virtual function thunks
32 // NOLINTBEGIN
33
34 // NOLINTEND
35};
36
37} // namespace cricket
Definition MediaEngineInterface.h:13
Definition VideoEngineInterface.h:22
Definition VoiceEngineInterface.h:26