mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-08 03:56:17 +00:00
12 lines
179 B
C++
12 lines
179 B
C++
|
#include "mainwindow.h"
|
||
|
#include "ui_mainwindow.h"
|
||
|
|
||
|
#include <QVBoxLayout>
|
||
|
|
||
|
MainWindow::MainWindow() : ui(new Ui::MainWindow())
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
#include "mainwindow.moc"
|