xref: /haiku/src/apps/installer/InstallerApp.h (revision 1214ef1b2100f2b3299fc9d8d6142e46f70a4c3f)
1 /*
2  * Copyright 2005, Jérôme DUVAL. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #ifndef _InstallerApp_h
7 #define _InstallerApp_h
8 
9 #include <Application.h>
10 #include "InstallerWindow.h"
11 
12 class InstallerApp : public BApplication {
13 	public:
14 		InstallerApp();
15 
16 	public:
17 		virtual void AboutRequested();
18 		virtual void ReadyToRun();
19 
20 	private:
21 		InstallerWindow *fWindow;
22 };
23 
24 #endif /* _InstallerApp_h */
25