LeviLamina
Loading...
Searching...
No Matches
SampleInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc::metrics {
6
7struct SampleInfo {
8public:
9 // prevent constructor by default
10 SampleInfo();
11
12public:
13 // member functions
14 // NOLINTBEGIN
15 MCNAPI SampleInfo(::std::string_view, int, int, uint64);
16
17 MCNAPI ~SampleInfo();
18 // NOLINTEND
19
20public:
21 // constructor thunks
22 // NOLINTBEGIN
23 MCNAPI void* $ctor(::std::string_view, int, int, uint64);
24 // NOLINTEND
25
26public:
27 // destructor thunk
28 // NOLINTBEGIN
29 MCNAPI void $dtor();
30 // NOLINTEND
31};
32
33} // namespace webrtc::metrics
Definition SampleInfo.h:7
MCAPI void * $ctor(::std::string_view, int, int, uint64)
MCAPI SampleInfo(::std::string_view, int, int, uint64)