BTRFS: Implement BTree::Path and change _Find.
[haiku.git] / src / apps / sudoku / Sudoku.h
blob0e037563c4529f6a871e3973b83266bbad1408ef
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
8 #include <Application.h>
10 class BMessage;
11 class SudokuWindow;
13 class Sudoku : public BApplication {
14 public:
15 Sudoku();
16 virtual ~Sudoku();
18 virtual void ReadyToRun();
20 virtual void RefsReceived(BMessage *message);
21 virtual void MessageReceived(BMessage *message);
23 private:
24 SudokuWindow* fWindow;
27 extern const char* kSignature;
29 #endif // SUDOKU_H