24 lines
630 B
C
24 lines
630 B
C
|
//
|
||
|
// Created by zpf on 23-2-1.
|
||
|
//
|
||
|
|
||
|
#ifndef UKUI_NOTIFICATION_NOTIFICATION_SERVER_APPLICATION_H
|
||
|
#define UKUI_NOTIFICATION_NOTIFICATION_SERVER_APPLICATION_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include "qtsinglecoreapplication.h"
|
||
|
namespace NotificationServer {
|
||
|
class NotificationServerApplication : public QtSingleCoreApplication
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
NotificationServerApplication(int &argc, char *argv[], const QString &applicationName = "ukui-notification-server");
|
||
|
~NotificationServerApplication();
|
||
|
|
||
|
protected Q_SLOTS:
|
||
|
void parseCmd(QString msg, bool isPrimary);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //UKUI_NOTIFICATION_NOTIFICATION_SERVER_APPLICATION_H
|