ukui-search/libsearch/index/searchmethodmanager.h

20 lines
403 B
C
Raw Normal View History

#ifndef SEARCHMETHODMANAGER_H
#define SEARCHMETHODMANAGER_H
#include "first-index.h"
//#include "inotify-index.h"
#include "inotify-watch.h"
namespace Zeeker {
2021-04-26 15:06:47 +08:00
class SearchMethodManager {
public:
SearchMethodManager();
void searchMethod(FileUtils::SearchMethod sm);
private:
FirstIndex m_fi;
// InotifyIndex* m_ii;
InotifyWatch *m_iw = nullptr;
};
}
#endif // SEARCHMETHODMANAGER_H