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