tychoGUI  1.0
 All Data Structures Namespaces Files Functions Variables
help2.cpp
Go to the documentation of this file.
1 #include "help2.h"
2 #include "ui_help2.h"
3 
4 help2::help2(QWidget *parent) :
5  QDialog(parent),
6  ui(new Ui::help2)
7 {
8  ui->setupUi(this);
9 
10  connect(ui->close, SIGNAL(clicked()), this, SLOT(close()));
11 }
12 
14 {
15  delete ui;
16 }