#include "statisticsform.h" #include "ui_statisticsform.h" StatisticsForm::StatisticsForm(QWidget *parent) : QWidget(parent), ui(new Ui::StatisticsForm) { ui->setupUi(this); } StatisticsForm::~StatisticsForm() { delete ui; }