25 lines
574 B
C
25 lines
574 B
C
|
//
|
||
|
// Created by zpf on 23-2-2.
|
||
|
//
|
||
|
|
||
|
#ifndef UKUI_NOTIFICATION_NOTIFICATION_CLIENT_H
|
||
|
#define UKUI_NOTIFICATION_NOTIFICATION_CLIENT_H
|
||
|
#include "ukui-notification_global.h"
|
||
|
#include <QObject>
|
||
|
namespace UkuiNotification {
|
||
|
class NotificationClientPrivate;
|
||
|
class UKUINOTIFICATION_EXPORT NotificationClient : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
NotificationClient(QObject *parent);
|
||
|
~NotificationClient() override;
|
||
|
bool registerClient();
|
||
|
private:
|
||
|
NotificationClientPrivate *d = nullptr;
|
||
|
};
|
||
|
|
||
|
} // UkuiNotification
|
||
|
|
||
|
#endif //UKUI_NOTIFICATION_NOTIFICATION_CLIENT_H
|