Adding missing file ISearchBits.cs

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2013-02-10 07:38:03 -08:00
parent 836c00fb37
commit fef0a46c0c

View File

@@ -0,0 +1,8 @@
namespace Orchard.Indexing {
public interface ISearchBits {
ISearchBits And(ISearchBits other);
ISearchBits Or(ISearchBits other);
ISearchBits Xor(ISearchBits other);
long Count();
}
}