trace.h
1 #pragma once 2 3 #include <common/Telemetry/TraceBase.h> 4 #include <string> 5 6 class Trace 7 { 8 public: 9 class LightSwitch : public telemetry::TraceBase 10 { 11 public: 12 static void RegisterProvider(); 13 static void UnregisterProvider(); 14 static void ScheduleModeToggled(const std::wstring& newMode) noexcept; 15 static void ThemeTargetChanged(bool changeApps, bool changeSystem) noexcept; 16 }; 17 };