public MacroCommand(Writer writer, MacroStore macroStore) : base(Token) { this.writer = writer; this.macroStore = macroStore; }
public MacroTrigger(MacroStore macroStore) { this.macroStore = macroStore; }
public MacroRunner(MacroStore macroStore, MacroTrigger trigger, CommandInvoker commandInvoker) { this.macroStore = macroStore; this.trigger = trigger; this.commandInvoker = commandInvoker; }