Catalog filtering by book name works via Xapian

This commit is contained in:
Veloman Yunkan
2021-04-11 23:35:21 +04:00
parent 8287f351e7
commit 415c65cf03
3 changed files with 36 additions and 2 deletions

View File

@ -111,6 +111,9 @@ class Filter {
const std::string& getQuery() const { return _query; }
bool queryIsPartial() const { return _queryIsPartial; }
bool hasName() const;
const std::string& getName() const { return _name; }
private:
friend class Library;