KUserFeedback

surveytargetexpressionparser.h
1/*
2 SPDX-FileCopyrightText: 2017 Volker Krause <vkrause@kde.org>
3
4 SPDX-License-Identifier: MIT
5*/
6
7#ifndef KUSERFEEDBACK_SURVEYTARGETEXPRESSIONPARSER_H
8#define KUSERFEEDBACK_SURVEYTARGETEXPRESSIONPARSER_H
9
10#include <QtGlobal>
11
12QT_BEGIN_NAMESPACE
13class QString;
14QT_END_NAMESPACE
15
16namespace KUserFeedback {
17
18class SurveyTargetExpression;
19
20class SurveyTargetExpressionParser
21{
22public:
23 SurveyTargetExpressionParser();
24 ~SurveyTargetExpressionParser();
25
26 bool parse(const QString &s);
27
28 SurveyTargetExpression *expression() const;
29
30private:
31 Q_DISABLE_COPY(SurveyTargetExpressionParser)
32 SurveyTargetExpression *m_expression;
33};
34
35}
36
37#endif // KUSERFEEDBACK_SURVEYTARGETEXPRESSIONPARSER_H
Classes for integrating telemetry collection, survey targeting, and contribution encouragenemt and co...
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:20:56 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.