mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 11:17:53 +01:00
17 lines
564 B
C++
17 lines
564 B
C++
#pragma once
|
|
|
|
#include "pch.h"
|
|
|
|
#include <common/Telemetry/TraceBase.h>
|
|
|
|
class Trace : public telemetry::TraceBase
|
|
{
|
|
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;
|
|
static void EventOpenTemplates() noexcept;
|
|
};
|