blob: 91adbb42fbcae98bf43b451d5da4ca66492404ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "mnotificationmanagerinterface.h"
/*
* Implementation of interface class MNotificationManagerInterface
*/
MNotificationManagerInterface::MNotificationManagerInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent)
: QDBusAbstractInterface(service, path, staticInterfaceName(), connection, parent)
{
}
MNotificationManagerInterface::~MNotificationManagerInterface()
{
}
|