LeviLamina
Loading...
Searching...
No Matches
StreamInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/rtc/StreamResult.h"
7#include "mc/external/rtc/StreamState.h"
8
9namespace rtc {
10
11class StreamInterface {
12public:
13 // member variables
14 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 StreamInterface& operator=(StreamInterface const&);
21 StreamInterface(StreamInterface const&);
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual ~StreamInterface();
27
28 virtual ::rtc::StreamState GetState() const = 0;
29
30 virtual ::rtc::StreamResult Read(::rtc::ArrayView<uchar>, uint64&, int&) = 0;
31
32 virtual ::rtc::StreamResult Write(::rtc::ArrayView<uchar const>, uint64&, int&) = 0;
33
34 virtual void Close() = 0;
35
36 virtual bool Flush();
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
43
44 MCNAPI ::rtc::StreamResult WriteAll(void const* data, uint64 data_len, uint64* written, int* error);
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCNAPI void* $ctor();
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56 MCNAPI void $dtor();
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62 MCNAPI bool $Flush();
63
64
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCNAPI static void** $vftable();
71 // NOLINTEND
72};
73
74} // namespace rtc
Definition _HeaderOutputPredefine.h:309
MCAPI::rtc::StreamResult WriteAll(void const *data, uint64 data_len, uint64 *written, int *error)
MCAPI void $dtor()
MCAPI bool $Flush()
static MCAPI void ** $vftable()
MCAPI void * $ctor()
Definition Alias.h:14