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/monitor.hh | |
Initial commit
Diffstat (limited to 'src/monitor.hh')
| -rw-r--r-- | src/monitor.hh | 13 |
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 |
