mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-07-07 02:55:48 +00:00
15 lines
218 B
C++
15 lines
218 B
C++
#include "aboutwindow.h"
|
|
#include "ui_aboutwindow.h"
|
|
|
|
AboutWindow::AboutWindow(QWidget *parent) :
|
|
QMainWindow(parent),
|
|
ui(new Ui::AboutWindow)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
AboutWindow::~AboutWindow()
|
|
{
|
|
delete ui;
|
|
}
|