diff options
Diffstat (limited to 'libsowatch/notification.cpp')
-rw-r--r-- | libsowatch/notification.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libsowatch/notification.cpp b/libsowatch/notification.cpp index 55f3e78..b4c97b2 100644 --- a/libsowatch/notification.cpp +++ b/libsowatch/notification.cpp @@ -2,12 +2,16 @@ using namespace sowatch; -Notification::Notification(Type type, const QDateTime& dateTime, QString title, QString body) - : _type(type), _dateTime(dateTime), _title(title), _body(body) +Notification::Notification(QObject *parent) + : QObject(parent) { } Notification::~Notification() { +} +QImage Notification::image() const +{ + return QImage(); } |