clean build file
This commit is contained in:
parent
d4056381da
commit
9aab2a4431
58 changed files with 3706 additions and 55 deletions
28
client/platforms/macos/iosnotificationhandler.h
Normal file
28
client/platforms/macos/iosnotificationhandler.h
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#ifndef IOSNOTIFICATIONHANDLER_H
|
||||
#define IOSNOTIFICATIONHANDLER_H
|
||||
|
||||
#include "ui/notificationhandler.h"
|
||||
|
||||
#include <QObject>
|
||||
|
||||
class IOSNotificationHandler final : public NotificationHandler {
|
||||
Q_DISABLE_COPY_MOVE(IOSNotificationHandler)
|
||||
|
||||
public:
|
||||
IOSNotificationHandler(QObject* parent);
|
||||
~IOSNotificationHandler();
|
||||
|
||||
protected:
|
||||
void notify(Message type, const QString& title, const QString& message,
|
||||
int timerMsec) override;
|
||||
|
||||
private:
|
||||
void* m_delegate = nullptr;
|
||||
};
|
||||
|
||||
|
||||
#endif // IOSNOTIFICATIONHANDLER_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue