tychoBCGEN  0.5
 All Data Structures Namespaces Files Functions Variables
about.cpp
Go to the documentation of this file.
1 
13 #include "about.h"
14 #include "global.h"
15 #include "ui_about.h"
16 
18 
19 about::about(QWidget *parent) :
20  QDialog(parent),
21  ui(new Ui::about)
22 {
23  ui->setupUi(this);
24 
25  connect(ui->close, SIGNAL(clicked()), this, SLOT(close()));
26 }
27 
29 {
30  delete ui;
31 }