25 lines
460 B
C++
25 lines
460 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_rowCountValueLabel;
|
|
QLabel* m_nExpectedBiddingsValueLabel;
|
|
|
|
void setupBindableProperties();
|
|
};
|
|
|
|
#endif // SUMMARYWIDGET_H
|