summaryrefslogtreecommitdiff
path: root/src/mainwindow.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.cc')
-rw-r--r--src/mainwindow.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mainwindow.cc b/src/mainwindow.cc
new file mode 100644
index 0000000..60d2dcf
--- /dev/null
+++ b/src/mainwindow.cc
@@ -0,0 +1,10 @@
+
+#include "mainwindow.h"
+#include "sudoku.h"
+
+MainWindow::MainWindow()
+{
+ mainwindow_sudoku = new Sudoku();
+
+ setCentralWidget(mainwindow_sudoku);
+}