xref: /haiku/src/apps/haiku3d/App.h (revision 23eafdaf313f2e756170f6a543205311a4d9bc96)
1 /*
2  * Copyright 2008, Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  * 		Alexandre Deckner <alex@zappotek.com>
7  */
8 
9 #ifndef _APP_H
10 #define _APP_H
11 
12 #include <Application.h>
13 
14 class App: public BApplication {
15 protected:
16 	BWindow*		fMainWindow;
17 public:
18 					App();
19 					~App();
20 
21 	virtual void	AboutRequested();
22 	virtual void	MessageReceived(BMessage *message);
23 
24 };
25 
26 #endif /* _APP_H */
27