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 variables
10 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 SampleInfo& operator=(SampleInfo const&);
21 SampleInfo(SampleInfo const&);
22 SampleInfo();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCNAPI SampleInfo(::std::string_view name, int min, int max, uint64 bucket_count);
28
29 MCNAPI ~SampleInfo();
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCNAPI void* $ctor(::std::string_view name, int min, int max, uint64 bucket_count);
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCNAPI void $dtor();
42 // NOLINTEND
43};
44
45} // namespace webrtc::metrics
Definition Alias.h:14
Definition SampleInfo.h:7
MCAPI void * $ctor(::std::string_view name, int min, int max, uint64 bucket_count)
MCAPI SampleInfo(::std::string_view name, int min, int max, uint64 bucket_count)