Files
Testa/notification.h
2017-02-03 00:49:10 +01:00

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