This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2014-01-02 18:06:58 +01:00

24 lines
346 B
C++

#ifndef RULE_H
#define RULE_H
#include "action.h"
#include <QUuid>
class Rule
{
public:
Rule(const QUuid &id, const QUuid &triggerTypeId, const Action &action);
QUuid id() const;
QUuid triggerTypeId() const;
Action action() const;
private:
QUuid m_id;
QUuid m_triggerTypeId;
Action m_action;
};
#endif // RULE_H