mirror of
https://github.com/AxioDL/amuse.git
synced 2025-07-02 19:25:58 +00:00
11 lines
174 B
C++
11 lines
174 B
C++
#include "MainWindow.hpp"
|
|
#include "ui_MainWindow.h"
|
|
|
|
MainWindow::MainWindow(QWidget* parent)
|
|
: QMainWindow(parent),
|
|
m_ui(new Ui::MainWindow)
|
|
{
|
|
m_ui->setupUi(this);
|
|
}
|
|
|