blob: d90a0dbbb85574d8d3d2af321e97221ddd3855a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "rule.h"
Rule::Rule(int id, int entry_id, When when, QDateTime date, QString color, QString highlight) :
id(id),
entry_id(entry_id),
when(when),
date(date),
color(color),
highlight(highlight)
{
}
|