NuriaProject Framework  0.1
The NuriaProject Framework
conditionevaluator.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_CONDITIONEVALUATOR_HPP
18 #define NURIA_CONDITIONEVALUATOR_HPP
19 
20 #include "lazyevaluation.hpp"
21 #include "essentials.hpp"
22 #include "callback.hpp"
23 
24 namespace Nuria {
25 class ConditionEvaluatorPrivate;
26 
30 class NURIA_CORE_EXPORT AbstractConditionEvaluator {
31 public:
32 
34  virtual ~AbstractConditionEvaluator ();
35 
36  virtual bool compile (const LazyCondition &condition) = 0;
37  virtual bool evaluate (const QVariantList &arguments, bool &error) = 0;
38 
39 };
40 
41 
47 class NURIA_CORE_EXPORT ConditionEvaluator : public AbstractConditionEvaluator {
48 public:
51 
52  bool compile (const LazyCondition &condition) override;
53  bool evaluate (const QVariantList &arguments, bool &error) override;
54 
55  void registerMethod (const QString &name, const Callback &method);
56 
57 private:
58  ConditionEvaluatorPrivate *d_ptr;
59 };
60 
61 }
62 
63 #endif // NURIA_CONDITIONEVALUATOR_HPP
A modern style callback mechanism which can be bound to various method types including slots...
Definition: callback.hpp:140
Definition: abstractsessionmanager.hpp:24
The ConditionEvaluator class implements a simple evaluator for LazyCondition.
Definition: conditionevaluator.hpp:47
The AbstractConditionEvaluator class.
Definition: conditionevaluator.hpp:30
LazyCondition offers lazily evaluated conditions for C++.
Definition: lazyevaluation.hpp:62