summaryrefslogtreecommitdiff
path: root/src/notify.hh
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@opera.com>2026-01-12 23:06:20 +0100
committerJoel Klinghed <the_jk@opera.com>2026-01-12 23:06:20 +0100
commitdfeb19b0a83b8ce57d28bf94a4f8d129993d1064 (patch)
treed352908df286058059e306c350d89a07c67049eb /src/notify.hh
Initial commit
Diffstat (limited to 'src/notify.hh')
-rw-r--r--src/notify.hh12
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