LeviLamina
Loading...
Searching...
No Matches
CPUProfileTokenMarker.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Bedrock::Profiler::details { struct StaticProfLabel; }
8// clang-format on
9
10namespace Core::Profile {
11
12class CPUProfileTokenMarker {
13public:
14 // member variables
15 // NOLINTBEGIN
21 // NOLINTEND
22
23#ifdef LL_PLAT_S
24public:
25 // prevent constructor by default
26 CPUProfileTokenMarker& operator=(CPUProfileTokenMarker const&);
27 CPUProfileTokenMarker(CPUProfileTokenMarker const&);
28 CPUProfileTokenMarker();
29
30#else // LL_PLAT_C
31public:
32 // prevent constructor by default
33 CPUProfileTokenMarker& operator=(CPUProfileTokenMarker const&);
34 CPUProfileTokenMarker();
35
36#endif
37public:
38 // member functions
39 // NOLINTBEGIN
40#ifdef LL_PLAT_C
41 MCNAPI CPUProfileTokenMarker(::Core::Profile::CPUProfileTokenMarker const& rhs);
42
43 MCNAPI CPUProfileTokenMarker(char const* group, char const* label, uint color);
44#endif
45
46 MCNAPI CPUProfileTokenMarker(char const* group, ::Bedrock::Profiler::details::StaticProfLabel label, uint color);
47
48 MCNAPI ::Core::Profile::CPUProfileTokenMarker& operator=(::Core::Profile::CPUProfileTokenMarker&& rhs);
49 // NOLINTEND
50
51public:
52 // static variables
53 // NOLINTBEGIN
54 MCNAPI static ::std::add_lvalue_reference_t<char const[]> CLONE_WARNING();
55
56 MCNAPI static ::std::add_lvalue_reference_t<char const[]> EMPTY_WARNING();
57 // NOLINTEND
58
59public:
60 // constructor thunks
61 // NOLINTBEGIN
62#ifdef LL_PLAT_C
63 MCNAPI void* $ctor(::Core::Profile::CPUProfileTokenMarker const& rhs);
64
65 MCNAPI void* $ctor(char const* group, char const* label, uint color);
66#endif
67
68 MCNAPI void* $ctor(char const* group, ::Bedrock::Profiler::details::StaticProfLabel label, uint color);
69 // NOLINTEND
70};
71
72} // namespace Core::Profile
Definition CPUProfileTokenMarker.h:12
MCAPI::Core::Profile::CPUProfileTokenMarker & operator=(::Core::Profile::CPUProfileTokenMarker &&rhs)
static MCAPI ::std::add_lvalue_reference_t< char const[]> EMPTY_WARNING()
MCAPI CPUProfileTokenMarker(char const *group, ::Bedrock::Profiler::details::StaticProfLabel label, uint color)
static MCAPI ::std::add_lvalue_reference_t< char const[]> CLONE_WARNING()
MCAPI void * $ctor(char const *group, ::Bedrock::Profiler::details::StaticProfLabel label, uint color)
Definition StaticProfLabel.h:7
Definition Alias.h:14