summaryrefslogtreecommitdiff
path: root/src/monitor.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/monitor.hh
Initial commit
Diffstat (limited to 'src/monitor.hh')
-rw-r--r--src/monitor.hh13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/monitor.hh b/src/monitor.hh
new file mode 100644
index 0000000..8861473
--- /dev/null
+++ b/src/monitor.hh
@@ -0,0 +1,13 @@
+#ifndef MONITOR_HH
+#define MONITOR_HH
+
+#include <optional>
+#include <string>
+
+class Monitor {
+ public:
+ static int run(std::optional<std::string> display,
+ std::optional<std::string> font_name);
+};
+
+#endif // MONITOR_HH