22 lines
491 B
C
22 lines
491 B
C
|
//
|
||
|
// Created by zpf on 2023/2/7.
|
||
|
//
|
||
|
|
||
|
#ifndef UKUI_NOTIFICATION_NOTIFICATION_CLIENT_TEST_H
|
||
|
#define UKUI_NOTIFICATION_NOTIFICATION_CLIENT_TEST_H
|
||
|
#include "notification-client.h"
|
||
|
#include <QObject>
|
||
|
|
||
|
class NotificationClientTest : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit NotificationClientTest(QObject *parent = nullptr);
|
||
|
~NotificationClientTest();
|
||
|
private:
|
||
|
UkuiNotification::NotificationClient *m_client = nullptr;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //UKUI_NOTIFICATION_NOTIFICATION_CLIENT_TEST_H
|