mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 02:10:47 +03:00
13 lines
270 B
C
13 lines
270 B
C
|
#pragma once
|
||
|
|
||
|
#include <QImage>
|
||
|
#include <QString>
|
||
|
|
||
|
class NotificationsManager
|
||
|
{
|
||
|
public:
|
||
|
static void postNotification(const QString &room,
|
||
|
const QString &user,
|
||
|
const QString &message);
|
||
|
};
|