LeviLamina
Loading...
Searching...
No Matches
TimeAccumulator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 8, uint64> mCount;
10 ::ll::TypedStorage<8, 8, uint64> mNanoseconds;
11 ::ll::TypedStorage<8, 8, uint64> mMaxSample;
12 // NOLINTEND
13
14public:
15 // member functions
16 // NOLINTBEGIN
17 MCAPI float getTimeSumAverageMS() const;
18
19 MCAPI float getTimeSumAverageSeconds() const;
20 // NOLINTEND
21};
Definition TimeAccumulator.h:5