Catalog filtering by category works via Xapian

This commit is contained in:
Veloman Yunkan
2021-04-11 23:51:49 +04:00
parent 415c65cf03
commit 0c0a37073b
3 changed files with 29 additions and 1 deletions

View File

@ -114,6 +114,9 @@ class Filter {
bool hasName() const;
const std::string& getName() const { return _name; }
bool hasCategory() const;
const std::string& getCategory() const { return _category; }
private:
friend class Library;