Notification.hpp 306 B

1234567891011121314
  1. #pragma once
  2. #include <string>
  3. namespace QuickMedia {
  4. enum class Urgency {
  5. LOW,
  6. NORMAL,
  7. CRITICAL
  8. };
  9. const char* urgency_string(Urgency urgency);
  10. void show_notification(const std::string &title, const std::string &description, Urgency urgency = Urgency::NORMAL);
  11. }