diff options
Diffstat (limited to 'src/rule.cpp')
-rw-r--r-- | src/rule.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/rule.cpp b/src/rule.cpp index d90a0db..85da13a 100644 --- a/src/rule.cpp +++ b/src/rule.cpp @@ -1,3 +1,5 @@ +#include <QList> + #include "rule.h" Rule::Rule(int id, int entry_id, When when, QDateTime date, QString color, QString highlight) : @@ -9,3 +11,5 @@ Rule::Rule(int id, int entry_id, When when, QDateTime date, QString color, QStri highlight(highlight) { } + +QList<Rule> Rule::rules; |