mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-12-15 21:32:05 +08:00
15 lines
203 B
C++
15 lines
203 B
C++
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include <QObject>
|
|
#include <QtDBus>
|
|
|
|
class Utils
|
|
{
|
|
public:
|
|
Utils();
|
|
static void sendNotification(QString icon,QString title,QString body);
|
|
};
|
|
|
|
#endif // UTILS_H
|