LeviLamina
Loading...
Searching...
No Matches
SessionDescriptionInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/SdpType.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace cricket { class Candidate; }
11namespace cricket { class SessionDescription; }
12namespace webrtc { class IceCandidateCollection; }
13namespace webrtc { class IceCandidateInterface; }
14// clang-format on
15
16namespace webrtc {
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 0
23 virtual ~SessionDescriptionInterface() = default;
24
25 // vIndex: 1
26 virtual ::std::unique_ptr<::webrtc::SessionDescriptionInterface> Clone() const;
27
28 // vIndex: 3
29 virtual ::cricket::SessionDescription* description() = 0;
30
31 // vIndex: 2
32 virtual ::cricket::SessionDescription const* description() const = 0;
33
34 // vIndex: 4
35 virtual ::std::string session_id() const = 0;
36
37 // vIndex: 5
38 virtual ::std::string session_version() const = 0;
39
40 // vIndex: 6
41 virtual ::webrtc::SdpType GetType() const;
42
43 // vIndex: 7
44 virtual ::std::string type() const = 0;
45
46 // vIndex: 8
47 virtual bool AddCandidate(::webrtc::IceCandidateInterface const*) = 0;
48
49 // vIndex: 9
50 virtual uint64 RemoveCandidates(::std::vector<::cricket::Candidate> const&);
51
52 // vIndex: 10
53 virtual uint64 number_of_mediasections() const = 0;
54
55 // vIndex: 11
56 virtual ::webrtc::IceCandidateCollection const* candidates(uint64) const = 0;
57
58 // vIndex: 12
59 virtual bool ToString(::std::string*) const = 0;
60 // NOLINTEND
61
62public:
63 // static variables
64 // NOLINTBEGIN
65 MCAPI static ::std::add_lvalue_reference_t<char const[]> kAnswer();
66
67 MCAPI static ::std::add_lvalue_reference_t<char const[]> kOffer();
68
69 MCAPI static ::std::add_lvalue_reference_t<char const[]> kPrAnswer();
70
71 MCAPI static ::std::add_lvalue_reference_t<char const[]> kRollback();
72 // NOLINTEND
73
74public:
75 // destructor thunk
76 // NOLINTBEGIN
77
78 // NOLINTEND
79
80public:
81 // virtual function thunks
82 // NOLINTBEGIN
83
84 // NOLINTEND
85
86public:
87 // vftables
88 // NOLINTBEGIN
89 MCAPI static void** $vftable();
90 // NOLINTEND
91};
92
93} // namespace webrtc
Definition IceCandidateInterface.h:12
Definition SessionDescriptionInterface.h:18