Move filtering methods to separate interface

This commit is contained in:
Andrzej Rybczak
2016-11-13 06:18:39 +01:00
parent 0477e2e750
commit 9b6a080a29
17 changed files with 69 additions and 19 deletions

View File

@@ -91,14 +91,14 @@ private:
struct ApplyFilterImmediately
{
ApplyFilterImmediately(Searchable *w)
ApplyFilterImmediately(Filterable *w)
: m_w(w)
{ }
bool operator()(const char *s);
private:
Searchable *m_w;
Filterable *m_w;
};
struct FindImmediately