Navigator2Go  2.0
Manage your local Ocean Navigator installation.
systemutils.h
1 #ifndef PROCESS_H
2 #define PROCESS_H
3 
4 #include "nodiscard.h"
5 
6 #include <QString>
7 
8 namespace System {
9 
11 NODISCARD bool IsProcessRunning(const QString& processName);
12 
14 void SendDesktopNotification(const QString& title, const QString& message);
15 
16 } // namespace System
17 
18 
19 #endif // PROCESS_H
Definition: systemutils.cpp:9