LeviLamina
Loading...
Searching...
No Matches
RefCountedBase.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace rtc {
6
8public:
9 // member variables
10 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 RefCountedBase& operator=(RefCountedBase const&);
19
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 // vIndex: 0
24 virtual ~RefCountedBase() = default;
25 // NOLINTEND
26
27public:
28 // destructor thunk
29 // NOLINTBEGIN
30
31 // NOLINTEND
32};
33
34} // namespace rtc
Definition RefCountedBase.h:7
Definition Alias.h:14