You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #ifndef OSXPLATFORM_H
- #define OSXPLATFORM_H
-
- #include "../platformdepend.h"
- #include "notification.h"
-
- class OsxPlatform : public IPlatform
- {
- public:
- OsxPlatform();
-
- public:
- long showNotify(const QString& title, const QString& content, const QString &fellowIp) override;
- void hideAllNotify() override;
-
- void setBadgeNumber(int number) override;
-
- void setMainWnd(MainWindow *mainWnd) override;
- private:
- Notification mNotify;
- };
-
- #endif // OSXPLATFORM_H
|