LeviLamina
Loading...
Searching...
No Matches
MemoryCategoryCounter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Memory {
6
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<8, 8, char const*> mCategoryName;
12 ::ll::TypedStorage<8, 8, uint64> mCurrentBytes;
13 struct {
14 ::ll::TypedStorage<8, 8, uint64> mTotalAllocationCount;
15 ::ll::TypedStorage<4, 4, uint> mCurrentAllocationCount;
16 ::ll::TypedStorage<4, 4, uint> mMaxAllocationCount;
17 ::ll::TypedStorage<8, 8, uint64> mMaxBytes;
18 } detailed;
19 // NOLINTEND
20};
21
22} // namespace Memory
Definition MemoryCategoryCounter.h:7