File: advancedqueryparser.h

package info (click to toggle)
baloo-kf5 5.78.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,252 kB
  • sloc: cpp: 25,038; sh: 24; xml: 15; makefile: 10
file content (24 lines) | stat: -rw-r--r-- 399 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
    SPDX-FileCopyrightText: 2014 Vishesh Handa <me@vhanda.in>

    SPDX-License-Identifier: LGPL-2.1-or-later
*/

#ifndef BALOO_ADVANCEDQUERYPARSER_H
#define BALOO_ADVANCEDQUERYPARSER_H

#include "query.h"
#include "term.h"

namespace Baloo {

class AdvancedQueryParser
{
public:
    AdvancedQueryParser();

    Baloo::Term parse(const QString& text);
};
}

#endif // BALOO_ADVANCEDQUERYPARSER_H