LeviLamina
Loading...
Searching...
No Matches
RateStatistics.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
8public:
9 // RateStatistics inner types declare
10 // clang-format off
11 struct Bucket;
12 // clang-format on
13
14 // RateStatistics inner types define
15 struct Bucket {
16 public:
17 // prevent constructor by default
18 Bucket();
19
20 public:
21 // member functions
22 // NOLINTBEGIN
23 MCNAPI explicit Bucket(int64);
24 // NOLINTEND
25
26 public:
27 // constructor thunks
28 // NOLINTBEGIN
29 MCNAPI void* $ctor(int64);
30 // NOLINTEND
31 };
32
33public:
34 // prevent constructor by default
35 RateStatistics& operator=(RateStatistics const&);
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCNAPI void EraseOld(int64);
42
43 MCNAPI ::std::optional<int64> Rate(int64) const;
44
46
47 MCNAPI RateStatistics(int64, float);
48
49 MCNAPI void Update(int64, int64);
50
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCNAPI void* $ctor(::webrtc::RateStatistics const&);
58
59 MCNAPI void* $ctor(int64, float);
60 // NOLINTEND
61
62public:
63 // destructor thunk
64 // NOLINTBEGIN
65 MCNAPI void $dtor();
66 // NOLINTEND
67};
68
69} // namespace webrtc
Definition RateStatistics.h:7
MCAPI ::std::optional< int64 > Rate(int64) const
MCAPI void * $ctor(int64, float)
MCAPI void Update(int64, int64)
MCAPI void EraseOld(int64)
MCAPI void * $ctor(::webrtc::RateStatistics const &)
MCAPI RateStatistics(int64, float)
MCAPI RateStatistics(::webrtc::RateStatistics const &)
Definition RateStatistics.h:15
MCAPI void * $ctor(int64)