howtouse.cpp 201 B

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