]> git.sesse.net Git - nageru/blob - mainwindow.cpp
Introduce a rudimentary main GUI (not wired up yet).
[nageru] / mainwindow.cpp
1 #include "mainwindow.h"
2 #include "window.h"
3 #include <thread>
4
5 #include "context.h"
6 #include "mixer.h"
7
8 #include "ui_mainwindow.cpp"
9
10 using std::thread;
11
12 MainWindow::MainWindow()
13 {
14         Ui::MainWindow *window = new Ui::MainWindow;
15         window->setupUi(this);
16 }