blob: 1da99fd4c46f0066eb7c97b54201777f18236bad (
plain)
1
2
3
4
5
6
7
8
9
|
#include "notifier.hpp"
Notifier::Notifier() {}
Notifier::~Notifier() {}
void Notifier::Notify(const Glib::ustring &id, const Glib::ustring &title, const Glib::ustring &text, const Glib::ustring &default_action, const std::string &icon_path) {}
void Notifier::Withdraw(const Glib::ustring &id) {}
|