blob: abc8bfce8de8704b133a9a30d9c0e3b6cd1975c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "notificationprovider.h"
using namespace sowatch;
NotificationProvider::NotificationProvider(QObject *parent) :
QObject(parent)
{
}
NotificationProvider::~NotificationProvider()
{
}
|