Albert
Loading...
Searching...
No Matches
matchconfig.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2025 Manuel Schneider
2// SPDX-License-Identifier: MIT
3
4#pragma once
5#include <albert/export.h>
6
7namespace albert
8{
9
19class ALBERT_EXPORT MatchConfig
20{
21public:
22
26 bool fuzzy = false;
27
31 bool ignore_case = true;
32
36 bool ignore_word_order = true;
37
41 bool ignore_diacritics = true;
42
43};
44
45} // namespace albert
Configuration for string matching.
Definition matchconfig.h:20
Definition app.h:56