mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 12:18:50 +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();
|
||
|
|
};
|