// // Created by zpf on 23-2-1. // #ifndef UKUI_NOTIFICATION_NOTIFICATION_SERVER_APPLICATION_H #define UKUI_NOTIFICATION_NOTIFICATION_SERVER_APPLICATION_H #include #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