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