File indexing completed on 2024-04-21 03:51:47

0001 /*
0002     SPDX-FileCopyrightText: 2014 Vishesh Handa <me@vhanda.in>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #ifndef BALOO_ADVANCEDQUERYPARSER_H
0008 #define BALOO_ADVANCEDQUERYPARSER_H
0009 
0010 #include "query.h"
0011 #include "term.h"
0012 
0013 namespace Baloo {
0014 
0015 class AdvancedQueryParser
0016 {
0017 public:
0018     AdvancedQueryParser();
0019 
0020     Baloo::Term parse(const QString& text);
0021 };
0022 }
0023 
0024 #endif // BALOO_ADVANCEDQUERYPARSER_H