summaryrefslogtreecommitdiff
path: root/src/rule.cpp
blob: 85da13a52bd90e3b774045858973404122286e3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <QList>

#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)
{
}

QList<Rule> Rule::rules;