summaryrefslogtreecommitdiff
path: root/src/entry.cpp
blob: 48766414539b275ec1696de2e64510292bfd343e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "entry.h"

Entry::Entry(int id, int parent_id, QString desc, QDateTime due, QString due_alt, QUrl link, QString color, QString highlight, bool done, bool hidden) :
	id(id),
	parent_id(parent_id),
	desc(desc),
	due(due),
	due_alt(due_alt),
	link(link),
	color(color),
	highlight(highlight),
	done(done),
	hidden(hidden) 
{
}