LeviLamina
Loading...
Searching...
No Matches
TimeMarker.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/string/HashedString.h"
7
8class TimeMarker {
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<8, 48, ::HashedString> mName;
13 ::ll::TypedStorage<4, 4, int> mTime;
14 ::ll::TypedStorage<4, 8, ::std::optional<int>> mPeriod;
15 // NOLINTEND
16
17public:
18 // member functions
19 // NOLINTBEGIN
20#ifdef LL_PLAT_C
21 MCAPI ::std::string const& getName() const;
22#endif
23
24 MCAPI ~TimeMarker();
25 // NOLINTEND
26
27public:
28 // static variables
29 // NOLINTBEGIN
30 MCAPI static uint const& MAX_NAME_LENGTH();
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36 MCFOLD void $dtor();
37 // NOLINTEND
38};
Definition TimeMarker.h:8