20 lines
272 B
C++
20 lines
272 B
C++
#ifndef DATASERVICE_H
|
|
#define DATASERVICE_H
|
|
|
|
#include <QObject>
|
|
|
|
class DataService : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DataService(QObject *parent = nullptr);
|
|
|
|
signals:
|
|
void resultReady();
|
|
|
|
public slots:
|
|
void doWork();
|
|
};
|
|
|
|
#endif // DATASERVICE_H
|