LeviLamina
Loading...
Searching...
No Matches
CopyOnWriteBuffer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/rtc/BufferT.h"
7#include "mc/external/rtc/FinalRefCountedObject.h"
8
9namespace rtc {
10
12public:
13 // member variables
14 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 CopyOnWriteBuffer& operator=(CopyOnWriteBuffer const&);
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCNAPI void Clear();
28
30
32
34
35 MCNAPI explicit CopyOnWriteBuffer(uint64 size);
36
37 MCNAPI CopyOnWriteBuffer(uint64 size, uint64 capacity);
38
39 MCNAPI void EnsureCapacity(uint64 new_capacity);
40
41 MCNAPI void SetSize(uint64 size);
42
43 MCNAPI void UnshareAndEnsureCapacity(uint64 new_capacity);
44
45 MCNAPI ::rtc::CopyOnWriteBuffer& operator=(::rtc::CopyOnWriteBuffer&& buf);
46
47 MCNAPI bool operator==(::rtc::CopyOnWriteBuffer const& buf) const;
48
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCNAPI void* $ctor();
56
57 MCNAPI void* $ctor(::rtc::CopyOnWriteBuffer&& buf);
58
59 MCNAPI void* $ctor(::rtc::CopyOnWriteBuffer const& buf);
60
61 MCNAPI void* $ctor(uint64 size);
62
63 MCNAPI void* $ctor(uint64 size, uint64 capacity);
64 // NOLINTEND
65
66public:
67 // destructor thunk
68 // NOLINTBEGIN
69 MCNAPI void $dtor();
70 // NOLINTEND
71};
72
73} // namespace rtc
Definition CopyOnWriteBuffer.h:11
MCAPI::rtc::CopyOnWriteBuffer & operator=(::rtc::CopyOnWriteBuffer &&buf)
MCAPI void EnsureCapacity(uint64 new_capacity)
MCAPI CopyOnWriteBuffer(::rtc::CopyOnWriteBuffer &&buf)
MCAPI void * $ctor()
MCAPI void * $ctor(::rtc::CopyOnWriteBuffer const &buf)
MCAPI void * $ctor(uint64 size, uint64 capacity)
MCAPI void * $ctor(::rtc::CopyOnWriteBuffer &&buf)
MCAPI bool operator==(::rtc::CopyOnWriteBuffer const &buf) const
MCAPI CopyOnWriteBuffer(uint64 size)
MCAPI void * $ctor(uint64 size)
MCAPI CopyOnWriteBuffer(::rtc::CopyOnWriteBuffer const &buf)
MCAPI void UnshareAndEnsureCapacity(uint64 new_capacity)
MCAPI void SetSize(uint64 size)
MCAPI CopyOnWriteBuffer(uint64 size, uint64 capacity)
Definition Alias.h:14