xref: /haiku/src/apps/glteapot/TeapotApp.h (revision 820dca4df6c7bf955c46e8f6521b9408f50b2900)
1 /*
2 	Copyright 1999, Be Incorporated.   All Rights Reserved.
3 	This file may be used under the terms of the Be Sample Code License.
4 */
5 #ifndef _TEAPOT_APP_
6 #define _TEAPOT_APP_
7 
8 
9 #include <Application.h>
10 
11 #include "TeapotWindow.h"
12 
13 
14 class TeapotApp : public BApplication {
15 public:
16 							TeapotApp(const char* sign);
17 	virtual	void			MessageReceived(BMessage* msg);
18 
19 private:
20 			TeapotWindow*	fTeapotWindow;
21 };
22 
23 #endif
24