summaryrefslogtreecommitdiff
path: root/meegohandsetnotification/meegohandsetplugin.cpp
blob: 0f5057570030652e42b0429bafecc9870b3ab74b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include "meegohandsetplugin.h"
#include "meegohandsetnotificationprovider.h"

using namespace sowatch;

MeegoHandsetPlugin::MeegoHandsetPlugin()
{
}

MeegoHandsetPlugin::~MeegoHandsetPlugin()
{
}

QStringList MeegoHandsetPlugin::providers()
{
	QStringList providers;
	providers << "meegohandset";
	return providers;
}

NotificationProvider* MeegoHandsetPlugin::getProvider(const QString& driver, ConfigKey* settings, QObject *parent)
{
	Q_UNUSED(driver);
	Q_UNUSED(settings);
	return new MeegoHandsetNotificationProvider(parent);
}

Q_EXPORT_PLUGIN2(meegohandsetnotification, MeegoHandsetPlugin)