mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
17 lines
437 B
C++
17 lines
437 B
C++
#ifndef ANDROID_NOTIFICATIONHANDLER_H
|
|
#define ANDROID_NOTIFICATIONHANDLER_H
|
|
|
|
#include "ui/utils/notificationHandler.h"
|
|
|
|
class AndroidNotificationHandler final : public NotificationHandler {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AndroidNotificationHandler(QObject *parent = nullptr);
|
|
|
|
protected:
|
|
void notify(Message type, const QString &title, const QString &message, int timerMsec) override;
|
|
};
|
|
|
|
#endif // ANDROID_NOTIFICATIONHANDLER_H
|