Add IExclusivePlugin

This commit is contained in:
qianlifeng
2015-02-05 22:20:42 +08:00
parent 7b0a643de3
commit ad11ca0a87
21 changed files with 254 additions and 279 deletions

View File

@@ -5,8 +5,8 @@ using System.Text;
namespace Wox.Plugin.Features
{
public interface IExclusiveSearch
public interface IExclusiveQuery
{
bool IsExclusiveSearch(Query query);
bool IsExclusiveQuery(Query query);
}
}

View File

@@ -0,0 +1,7 @@
namespace Wox.Plugin.Features
{
public interface IInstantQuery
{
bool IsInstantQuery(string query);
}
}