#pragma once #include class Trace : public telemetry::TraceBase { public: // Log if the user has FindMyMouse enabled or disabled static void EnableFindMyMouse(const bool enabled) noexcept; // Log that the user activated the module by focusing the mouse pointer // activationMethod: 0 = DoubleLeftControlKey, 1 = DoubleRightControlKey, 2 = ShakeMouse, 3 = Shortcut static void MousePointerFocused(const int activationMethod) noexcept; };