mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 02:39:22 +08:00
32 lines
770 B
C#
32 lines
770 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Wox.Helper;
|
|
using Wox.Plugin;
|
|
|
|
namespace Wox.Commands
|
|
{
|
|
internal static class CommandFactory
|
|
{
|
|
private static PluginCommand pluginCmd;
|
|
private static SystemCommand systemCmd;
|
|
|
|
public static void DispatchCommand(Query query, bool updateView = true)
|
|
{
|
|
//lazy init command instance.
|
|
if (pluginCmd == null)
|
|
{
|
|
pluginCmd = new PluginCommand();
|
|
}
|
|
if (systemCmd == null)
|
|
{
|
|
systemCmd = new SystemCommand();
|
|
}
|
|
|
|
systemCmd.Dispatch(query,updateView);
|
|
pluginCmd.Dispatch(query,updateView);
|
|
}
|
|
}
|
|
}
|