mirror of
https://github.com/ysoftdevs/Testa.git
synced 2026-01-14 23:53:25 +01:00
16 lines
256 B
C++
16 lines
256 B
C++
#ifndef NOTIFICATION_H
|
|
#define NOTIFICATION_H
|
|
|
|
#include <string>
|
|
|
|
class Notification
|
|
{
|
|
public:
|
|
static void show(const std::string& title, const std::string& message);
|
|
static void hide();
|
|
private:
|
|
Notification() { }
|
|
};
|
|
|
|
#endif // NOTIFICATION_H
|