mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
12 lines
270 B
C++
12 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);
|
|
};
|