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 // member functions
10 // NOLINTBEGIN
11 MCAPI SampleInfo(::std::string_view, int, int, uint64);
12
13 MCAPI ~SampleInfo();
14 // NOLINTEND
15
16public:
17 // constructor thunks
18 // NOLINTBEGIN
19 MCAPI void* $ctor(::std::string_view, int, int, uint64);
20 // NOLINTEND
21
22public:
23 // destructor thunk
24 // NOLINTBEGIN
25 MCAPI void $dtor();
26 // NOLINTEND
27};
28
29} // namespace webrtc::metrics
Definition SampleInfo.h:7