Flow.Launcher/Wox/Commands/BaseCommand.cs

19 lines
372 B
C#
Raw Normal View History

2014-01-06 11:03:20 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2014-01-29 10:33:24 +00:00
using Wox.Plugin;
2014-01-06 11:03:20 +00:00
2014-01-29 10:33:24 +00:00
namespace Wox.Commands
2014-01-06 11:03:20 +00:00
{
public abstract class BaseCommand
{
2014-03-18 15:41:34 +00:00
public abstract void Dispatch(Query query);
2014-01-06 11:03:20 +00:00
protected void UpdateResultView(List<Result> results)
{
App.Window.OnUpdateResultView(results);
2014-01-06 11:03:20 +00:00
}
}
}