20 lines
361 B
C++
20 lines
361 B
C++
#ifndef UPDATENOTIFICATION_H
|
|
#define UPDATENOTIFICATION_H
|
|
|
|
#include <QNetworkReply>
|
|
|
|
class UpdateNotification : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
UpdateNotification();
|
|
void check();
|
|
private slots:
|
|
void finished_slot(QNetworkReply*);
|
|
};
|
|
|
|
namespace olive {
|
|
extern UpdateNotification update_notifier;
|
|
}
|
|
|
|
#endif // UPDATENOTIFICATION_H
|