summarylogtreecommitdiffstats
path: root/dataresult.h
blob: f9b6f91f6224805650592b19a73954fe60ec0be3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef DATARESULT_H
#define DATARESULT_H

#include <QWidget>

namespace Ui {
class DataResult;
}

class DataResult : public QWidget
{
    Q_OBJECT

public:
    explicit DataResult(QWidget *parent = nullptr);
    ~DataResult();

private:
    Ui::DataResult *ui;

public slots:
    void updateResultData(QMap<QString, QString>& text_data);
};

#endif // DATARESULT_H