diff options
Diffstat (limited to 'meegohandsetnotification/mnotificationmanagerinterface.cpp')
-rw-r--r-- | meegohandsetnotification/mnotificationmanagerinterface.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/meegohandsetnotification/mnotificationmanagerinterface.cpp b/meegohandsetnotification/mnotificationmanagerinterface.cpp new file mode 100644 index 0000000..91adbb4 --- /dev/null +++ b/meegohandsetnotification/mnotificationmanagerinterface.cpp @@ -0,0 +1,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() +{ +} |