Add IExclusiveSearch interface [WIP]

This commit is contained in:
qianlifeng
2015-02-05 18:43:05 +08:00
parent fa53bce27a
commit 7b0a643de3
6 changed files with 83 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wox.Plugin.Features
{
public interface IExclusiveSearch
{
bool IsExclusiveSearch(Query query);
}
}