2024-09-19 09:12:24 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "pch.h"
|
|
|
|
|
|
2024-10-24 22:04:32 +02:00
|
|
|
#include <common/Telemetry/TraceBase.h>
|
|
|
|
|
|
|
|
|
|
class Trace : public telemetry::TraceBase
|
2024-09-19 09:12:24 -07:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
static void EventToggleOnOff(_In_ const bool new_enabled_state) noexcept;
|
|
|
|
|
static void EventChangedTemplateLocation() noexcept;
|
|
|
|
|
static void EventShowTemplateItems(_In_ const size_t number_of_templates) noexcept;
|
|
|
|
|
static void EventCopyTemplate(_In_ const std::wstring template_file_extension) noexcept;
|
|
|
|
|
static void EventCopyTemplateResult(_In_ const HRESULT hr) noexcept;
|
|
|
|
|
};
|