LeviLamina
Loading...
Searching...
No Matches
RTCError.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/RTCErrorType.h"
7
8namespace webrtc {
9
10class RTCError {
11public:
12 // member variables
13 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 RTCError& operator=(RTCError const&);
23 RTCError(RTCError const&);
24 RTCError();
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI explicit RTCError(::webrtc::RTCErrorType);
30
31 MCAPI RTCError(::webrtc::RTCErrorType, ::std::string_view);
32
33 MCAPI char const* message() const;
34
35 MCAPI ::webrtc::RTCError& operator=(::webrtc::RTCError&&);
36
37 MCAPI void set_message(::std::string_view);
38
39 MCAPI ~RTCError();
40 // NOLINTEND
41
42public:
43 // static functions
44 // NOLINTBEGIN
45 MCAPI static ::webrtc::RTCError OK();
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCAPI void* $ctor(::webrtc::RTCErrorType);
52
53 MCAPI void* $ctor(::webrtc::RTCErrorType, ::std::string_view);
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59 MCFOLD void $dtor();
60 // NOLINTEND
61};
62
63} // namespace webrtc
Definition RTCError.h:10
Definition Alias.h:14