blob: 886147301c15877e09b8eb2c8dcfcd723585c397 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|