diff options
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 |
