diff options
Diffstat (limited to 'src/notify.hh')
| -rw-r--r-- | src/notify.hh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/notify.hh b/src/notify.hh new file mode 100644 index 0000000..11c16d7 --- /dev/null +++ b/src/notify.hh @@ -0,0 +1,12 @@ +#ifndef NOTIFY_HH +#define NOTIFY_HH + +#include <optional> +#include <string> + +class Notify { + public: + static int run(std::optional<std::string> display); +}; + +#endif // NOTIFY_HH |
