xref: /haiku/src/apps/sudoku/Sudoku.h (revision 21258e2674226d6aa732321b6f8494841895af5f)
1 /*
2  * Copyright 2007, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef SUDOKU_H
6 #define SUDOKU_H
7 
8 #include <Application.h>
9 
10 class BMessage;
11 class SudokuWindow;
12 
13 class Sudoku : public BApplication {
14 public:
15 	Sudoku();
16 	virtual ~Sudoku();
17 
18 	virtual void ReadyToRun();
19 
20 	virtual void RefsReceived(BMessage *message);
21 	virtual void MessageReceived(BMessage *message);
22 
23 private:
24 	SudokuWindow* fWindow;
25 };
26 
27 extern const char* kSignature;
28 
29 #endif	// SUDOKU_H
30