22 lines
384 B
C++
22 lines
384 B
C++
#ifndef SUMMARYWIDGET_H
|
|
#define SUMMARYWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
class ModelSummary;
|
|
class QLabel;
|
|
|
|
class SummaryWidget : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SummaryWidget(std::shared_ptr<ModelSummary> modelSummary, QWidget* parent = nullptr);
|
|
|
|
private:
|
|
std::shared_ptr<ModelSummary> m_modelSummary;
|
|
|
|
QLabel* m_rowCoundValueLabel;
|
|
};
|
|
|
|
#endif // SUMMARYWIDGET_H
|