15 lines
293 B
C++
15 lines
293 B
C++
//
|
|
// Created by zpf on 2023/2/13.
|
|
//
|
|
|
|
#ifndef UKUI_NOTIFICATION_UTILS_H
|
|
#define UKUI_NOTIFICATION_UTILS_H
|
|
#include <QString>
|
|
namespace UkuiNotification {
|
|
namespace Utils {
|
|
QString desktopEntryFromPid(uint pid);
|
|
QString displayFromPid(uint pid);
|
|
}
|
|
}
|
|
#endif //UKUI_NOTIFICATION_UTILS_H
|