Files
PowerToys/src/modules/shortcut_guide/ShortcutGuideLogger.h

11 lines
233 B
C
Raw Normal View History

2020-11-24 20:36:04 +02:00
#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();
};