mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 04:07:40 +02:00
11 lines
233 B
C++
11 lines
233 B
C++
#pragma once
|
|
#include <common/logger/logger.h>
|
|
|
|
class ShortcutGuideLogger
|
|
{
|
|
static std::shared_ptr<Logger> logger;
|
|
|
|
public:
|
|
static void Init(std::wstring moduleSaveLocation);
|
|
static std::shared_ptr<Logger> GetLogger();
|
|
}; |