tychoBCG3D  0.2
 All Data Structures Namespaces Files Functions Variables
help.cpp
Go to the documentation of this file.
1 #include "help.h"
2 #include "ui_help.h"
3 
4 help::help(QWidget *parent) :
5  QWidget(parent),
6  ui(new Ui::help)
7 {
8  ui->setupUi(this);
9 
10  ui->textBrowser->setOpenLinks(true);
11  ui->textBrowser->setSource(QUrl(":docu/help.html"));
12 }
13 
15 {
16  delete ui;
17 }
18 
20 {
21  close();
22 }