summaryrefslogtreecommitdiff
path: root/libsowatch/notification.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libsowatch/notification.cpp')
-rw-r--r--libsowatch/notification.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/libsowatch/notification.cpp b/libsowatch/notification.cpp
new file mode 100644
index 0000000..55f3e78
--- /dev/null
+++ b/libsowatch/notification.cpp
@@ -0,0 +1,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()
+{
+
+}