diff options
Diffstat (limited to 'src/notifications/notifier.hpp')
-rw-r--r-- | src/notifications/notifier.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/notifications/notifier.hpp b/src/notifications/notifier.hpp new file mode 100644 index 0000000..48e881f --- /dev/null +++ b/src/notifications/notifier.hpp @@ -0,0 +1,10 @@ +#pragma once +#include <glibmm/ustring.h> +#include <gdkmm/pixbuf.h> + +class Notifier { +public: + Notifier(); + + void Notify(const Glib::ustring &title, const Glib::ustring &text, const Glib::ustring &default_action); +}; |