#pragma once #include "Shortcut.h" #include // This class stores all the variables associated with each shortcut remapping class RemapShortcut { public: KeyShortcutUnion targetShortcut; bool isShortcutInvoked; ModifierKey winKeyInvoked; RemapShortcut(const KeyShortcutUnion& sc) : targetShortcut(sc), isShortcutInvoked(false), winKeyInvoked(ModifierKey::Disabled) { } RemapShortcut() : targetShortcut(Shortcut()), isShortcutInvoked(false), winKeyInvoked(ModifierKey::Disabled) { } inline bool operator==(const RemapShortcut& sc) const { return targetShortcut == sc.targetShortcut && isShortcutInvoked == sc.isShortcutInvoked && winKeyInvoked == sc.winKeyInvoked; } };