2022-03-11 21:08:44 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
2025-02-11 03:00:37 +01:00
|
|
|
#include <string_view>
|
|
|
|
|
using namespace std::literals;
|
2022-03-11 21:08:44 +01:00
|
|
|
|
|
|
|
|
struct perf_monitor
|
|
|
|
|
{
|
|
|
|
|
void operator()();
|
|
|
|
|
~perf_monitor();
|
|
|
|
|
|
|
|
|
|
static constexpr auto thread_name = "Performance Sensor"sv;
|
|
|
|
|
};
|