Files
GenericQtClientCore/genericcore.h

29 lines
446 B
C
Raw Normal View History

2025-10-02 11:19:14 +02:00
#ifndef GENERICCORE_H
#define GENERICCORE_H
#include <QObject>
2025-10-02 16:22:47 +02:00
class QString;
class GenericCore : public QObject {
Q_OBJECT
public:
GenericCore();
~GenericCore();
2025-10-02 16:22:47 +02:00
QString toString() const;
void sayHello() const;
bool isApplicationUpdateAvailable();
void triggerApplicationUpdate();
signals:
void displayStatusMessage(QString message);
private:
QString getMaintenanceToolFilePath() const;
2025-10-02 11:19:14 +02:00
};
#endif // GENERICCORE_H