]> git.sesse.net Git - nageru/blob - mainwindow.cpp
Initial checkin.
[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 using std::thread;
9
10 MainWindow::MainWindow()
11 {
12         setCentralWidget(new Window(this));
13 }