summaryrefslogtreecommitdiff
path: root/libsowatch/notification.cpp
blob: 55f3e78a91d52be79ac441713d13a7e8999ed98d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "notification.h"

using namespace sowatch;

Notification::Notification(Type type, const QDateTime& dateTime, QString title, QString body)
	: _type(type), _dateTime(dateTime), _title(title), _body(body)
{
}

Notification::~Notification()
{

}