summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-06-05 18:07:28 +0000
committerStijn Buys <ingar@osirion.org>2012-06-05 18:07:28 +0000
commit42cb020233b6635f2d06b7f7b533a0ee4f85f4fa (patch)
tree0c3b13cb9b715cbf2ad5a705c8f1066dcac78a75 /src/mainwindow.h
Initial import,
added automake project files, application framework, initial sudoku widget
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
new file mode 100644
index 0000000..09f22dd
--- /dev/null
+++ b/src/mainwindow.h
@@ -0,0 +1,22 @@
+
+#ifndef __INCLUDED_SUDOSOLVE_MAINWINDOW__
+#define __INCLUDED_SUDOSOLVE_MAINWINDOW__
+
+#include <QtGui>
+#include <QMainWindow>
+
+class Sudoku;
+
+class MainWindow : public QMainWindow
+{
+ Q_OBJECT
+
+public:
+ MainWindow();
+
+private:
+ Sudoku *mainwindow_sudoku;
+
+};
+
+#endif // __INCLUDED_SUDOSOLVE_MAINWINDOW__ \ No newline at end of file