Tempo
Tempo is an app that allows users to create and manage timers, stopwatches, and alarms.
Notification.hpp
Go to the documentation of this file.
1 #ifndef NOTIFICATION_HPP
2 #define NOTIFICATION_HPP
3 
4 #include <string>
5 
6 using namespace std;
7 
12 class Notification {
13 
14 public:
15 
22  Notification(string title, string body);
23 
30  void showNotification(const string& title, const string& body);
31 
38  static void setupNotifications();
39 
40 private:
41  // No private members currently
42 };
43 
44 #endif
STL namespace.
A class to handle system notifications using PowerShell scripts.