aboutsummaryrefslogtreecommitdiff
path: root/include/Notification.hpp
blob: 0e40f429c90aec141542c62831b11d85babace85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <string>

namespace QuickMedia {
    enum class Urgency {
        LOW,
        NORMAL,
        CRITICAL
    };

    const char* urgency_string(Urgency urgency);
    void show_notification(const std::string &title, const std::string &description, Urgency urgency = Urgency::NORMAL);
}