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 MCNAPI explicit RTCError(::webrtc::RTCErrorType);
30
31 MCNAPI RTCError(::webrtc::RTCErrorType, ::std::string_view);
32
33 MCNAPI char const* message() const;
34
35 MCNAPI ::webrtc::RTCError& operator=(::webrtc::RTCError&&);
36
37 MCNAPI void set_message(::std::string_view);
38
39 MCNAPI ~RTCError();
40 // NOLINTEND
41
42public:
43 // static functions
44 // NOLINTBEGIN
45 MCNAPI static ::webrtc::RTCError OK();
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCNAPI void* $ctor(::webrtc::RTCErrorType);
52
53 MCNAPI void* $ctor(::webrtc::RTCErrorType, ::std::string_view);
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59 MCNAPI void $dtor();
60 // NOLINTEND
61};
62
63} // namespace webrtc
Definition RTCError.h:10
MCAPI RTCError(::webrtc::RTCErrorType)
MCAPI void * $ctor(::webrtc::RTCErrorType, ::std::string_view)
MCAPI RTCError(::webrtc::RTCErrorType, ::std::string_view)
MCAPI void set_message(::std::string_view)
MCAPI void $dtor()
static MCAPI ::webrtc::RTCError OK()
MCAPI::webrtc::RTCError & operator=(::webrtc::RTCError &&)
MCAPI void * $ctor(::webrtc::RTCErrorType)
MCAPI char const * message() const
Definition Alias.h:14