blob: 19d45c8fbf91b9ea79e1225542eebe0b344d44ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef __INCLUDED_SUDOKUSOLVER_MAINWINDOW__
#define __INCLUDED_SUDOKUSOLVER_MAINWINDOW__
#include <QtGui>
#include <QMainWindow>
class SudokuWidget;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow();
};
#endif // __INCLUDED_SUDOKUSOLVER_MAINWINDOW__
|