setinfowidget.cpp 236 B

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