statisticsform.cpp 243 B

1234567891011121314
  1. #include "statisticsform.h"
  2. #include "ui_statisticsform.h"
  3. StatisticsForm::StatisticsForm(QWidget *parent) :
  4. QWidget(parent),
  5. ui(new Ui::StatisticsForm)
  6. {
  7. ui->setupUi(this);
  8. }
  9. StatisticsForm::~StatisticsForm()
  10. {
  11. delete ui;
  12. }