MNE-CPP  beta 1.0
aboutwindow.cpp
Go to the documentation of this file.
1 //=============================================================================================================
42 //*************************************************************************************************************
43 //=============================================================================================================
44 // INCLUDES
45 //=============================================================================================================
46 
47 #include "aboutwindow.h"
48 #include "ui_aboutwindow.h"
49 
50 //*************************************************************************************************************
51 //=============================================================================================================
52 // DEFINE MEMBER METHODS
53 //=============================================================================================================
54 
55 AboutWindow::AboutWindow(QWidget *parent) :
56  QDialog(parent),
57  ui(new Ui::AboutWindow)
58 {
59  ui->setupUi(this);
60 }
61 
62 //*************************************************************************************************************
63 AboutWindow::~AboutWindow()
64 {
65  delete ui;
66 }
Definition: aboutwindow.h:52