mirror of https://github.com/nymea/nymea.git
34 lines
408 B
C++
34 lines
408 B
C++
#ifndef STATEEVALUATOR_H
|
|
#define STATEEVALUATOR_H
|
|
|
|
#include "types/state.h"
|
|
|
|
//class EvaluatorEntry
|
|
//{
|
|
//public:
|
|
// EvaluatorEntry();
|
|
|
|
// QUuid stateTypeId;
|
|
// QUuid deviceId;
|
|
//// Rule::Operator operation;
|
|
// QVariant value;
|
|
//};
|
|
|
|
//class EvaluatorChain
|
|
//{
|
|
|
|
//};
|
|
|
|
class StateEvaluator
|
|
{
|
|
public:
|
|
|
|
StateEvaluator();
|
|
|
|
private:
|
|
// EvaluatorEntry m_entry;
|
|
|
|
};
|
|
|
|
#endif // STATEEVALUATOR_H
|