diff options
| author | Joel Klinghed <the_jk@opera.com> | 2026-01-12 23:06:20 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@opera.com> | 2026-01-12 23:06:20 +0100 |
| commit | dfeb19b0a83b8ce57d28bf94a4f8d129993d1064 (patch) | |
| tree | d352908df286058059e306c350d89a07c67049eb /src/notify.hh | |
Initial commit
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 |
