41
Notification(uint id_, BufferId buf_, const QString &sender_, const QString &msg_)
42
: notificationId(id_), bufferId(buf_), sender(sender_), message(msg_) {};
49
Notification(uint id_, BufferId buf_, NotificationType type_, const QString &sender_, const QString &msg_)
50
: notificationId(id_), bufferId(buf_), type(type_), sender(sender_), message(msg_) {};
45
53
inline AbstractNotificationBackend(QObject *parent) : QObject(parent) {};